forked from Bismuth-Forge/bismuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bismuth",
"version": "0.9.0",
"description": "A dynamic tiling extension for KWin",
"private": true,
"directories": {
"build": "build",
"test": "test"
},
"config": {
"build_dir": "build"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"esbuild": "^0.12.26",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"jest": "^27.2.0",
"jest-ts-auto-mock": "^2.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"ts-auto-mock": "^3.5.0",
"ts-jest": "^27.0.5",
"ttypescript": "^1.5.12",
"typedoc": "^0.21.6",
"typedoc-plugin-rename-defaults": "^0.3.0",
"typescript": "^4.4.3"
},
"scripts": {
"clean": "bin/clean.sh",
"build": "bin/build.sh",
"prestart": "npm run build",
"start": "bin/start.sh",
"stop": "bin/stop.sh",
"prepackage": "npm run build",
"package": "bin/package.sh",
"prescript-install": "npm run package",
"script-install": "bin/install.sh",
"script-uninstall": "bin/uninstall.sh",
"preinstall-and-restart-kwin-x11": "npm run script-install",
"install-and-restart-kwin-x11": "kwin_x11 --replace",
"postinstall-and-restart-kwin-x11": "bash -ic \"kwin_x11 --replace & disown\"",
"docs": "npx typedoc --out $npm_package_config_build_dir/docs",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gikari/bismuth.git"
},
"author": "Eon S. Jeon <esjeon@hyunmu.am>",
"contributors": [
"Mikhail Zolotukhin <mail@genda.life> (https://genda.life)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gikari/bismuth/issues"
},
"homepage": "https://github.com/gikari/bismuth#readme",
"jest": {
"preset": "ts-jest",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"globals": {
"ts-jest": {
"compiler": "ttypescript",
"setupFiles": [
"<rootDir>config.ts"
],
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
}
},
"prettier": {},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}