-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.62 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm --recursive --aggregate-output run build",
"pack": "pnpm --recursive --aggregate-output run pack",
"serve": "node scripts/serve.js",
"test": "jest packages/shared && pnpm --recursive --aggregate-output --workspace-concurrency=1 run test",
"lint": "pnpm run lint:prettier && pnpm run lint:cargo",
"lint:prettier": "pnpm prettier --check .",
"lint:cargo": "cd packages/swc && cargo fmt --check",
"lint-fix": "pnpm run lint-fix:prettier && pnpm run lint-fix:cargo",
"lint-fix:prettier": "pnpm prettier --write .",
"lint-fix:cargo": "cd packages/swc && cargo fmt",
"docs:dev": "node scripts/gen-api-docs.js && vitepress dev docs",
"docs:build": "node scripts/gen-api-docs.js && vitepress build docs",
"docs:preview": "vitepress serve docs --port 4173"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/chai": "5.0.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/tmp": "0.2.6",
"babel-jest": "29.7.0",
"chai": "5.1.2",
"change-case": "5.4.4",
"commander": "13.0.0",
"dotenv": "16.4.7",
"esbuild": "0.24.0",
"jest": "29.7.0",
"picocolors": "1.1.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"sitemap": "^8.0.0",
"standard-version": "9.5.0",
"tmp": "0.2.3",
"typescript": "5.7.2",
"vitepress": "1.5.0",
"yaml": "2.7.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}