-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "linux-window-session-manager",
"version": "4.0.5",
"description": "Window session manager for linux",
"main": "dist/index.js",
"module": "dist/index.es.js",
"bin": {
"lwsm": "cmd.js"
},
"repository": {
"type": "git",
"url": "git://github.com/johannesjo/linux-window-session-manager.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node cmd.js",
"buildBin": "find ./node_modules/x11 -type f -exec sed -i 's/req_proxy\\.arguments/arguments/g' {} + && nexe",
"build": "rollup --config",
"watch": "rollup --config --watch",
"testSnap": "snapcraft clean cmd -s pull && snapcraft prime && snap try prime/ --devmode && /snap/bin/lwsm save test && /snap/bin/lwsm restore test",
"version": "yarn build",
"pretty": "prettier --check \"src/**/*.ts\" --write"
},
"author": "Johannes Millan <[email protected]> (http://super-productivity.com)",
"license": "MIT",
"dependencies": {
"findup-sync": "^4.0.0",
"jfs": "^0.2.6",
"omelette": "^0.4.5",
"x11": "^2.3.0"
},
"devDependencies": {
"@types/node": "^12.7.8",
"D": "^1.0.0",
"husky": ">=4",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rollup": "^1.21.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
},
"nexe": {
"input": "./cmd.js",
"output": "./out/lwsm^$",
"temp": ".tmp",
"runtime": {
"framework": "node",
"version": "6.9.2",
"ignoreFlags": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}