forked from shikijs/shiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"private": true,
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel watch",
"fmt": "prettier --write packages/**/*.ts",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest --colors",
"update": "npm run update:themes && npm run update:grammars",
"update:themes": "bash ./scripts/pullThemes.sh",
"update:grammars": "bash ./scripts/pullGrammars.sh"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,json,yml}": [
"prettier --write"
],
"*.ts": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.1.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.12",
"@types/unzipper": "^0.10.5",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.22",
"esno": "^0.5.0",
"fast-plist": "^0.1.2",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"jsonc-parser": "^3.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"lodash.kebabcase": "^4.1.1",
"prettier": "^2.5.1",
"rollup": "^2.67.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.6",
"tsup": "^4.14.0",
"typescript": "^4.5.5",
"unzipper": "^0.10.11",
"yorkie": "^2.0.0"
},
"license": "MIT"
}