forked from shikijs/shiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"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",
"test:e2e": "npm run test:e2e:localserver & pnpm dlx playwright test",
"test:e2e:localserver": "node ./scripts/e2e/local-server.mjs",
"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": {
"@playwright/test": "^1.29.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.2.1",
"@types/cson": "^7.20.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"@types/unzipper": "^0.10.5",
"chalk": "^5.2.0",
"cross-env": "^7.0.3",
"cson": "^7.20.0",
"esno": "^0.16.3",
"fast-plist": "^0.1.3",
"fs-extra": "^11.1.0",
"jest": "^29.4.1",
"jsonc-parser": "^3.2.0",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"lodash.kebabcase": "^4.1.1",
"prettier": "^2.8.3",
"rollup": "^3.11.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"superstatic": "^9.0.0",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"unzipper": "^0.10.11",
"yorkie": "^2.0.0"
},
"license": "MIT",
"dependencies": {
"esbuild": "^0.16.10"
}
}