-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "truth-cli-monorepo",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "esno scripts/dev.ts --path ../packages/web --web",
"dev:test": "vitest",
"dev:playground": "esno scripts/dev.ts --path ../playground --playground",
"build": "esno scripts/build.ts web core cli",
"build:cli": "esno scripts/build.ts cli core",
"build:deploy": "esno scripts/build-vercel.ts --path ../packages/web --web",
"build:playground": "esno scripts/build-vercel.ts --path ../playground --playground",
"test": "esno scripts/test-e2e.ts && vitest run",
"bench": "vitest bench --run",
"docs:dev": "pnpm -F docs dev",
"docs:build": "pnpm -F docs build",
"docs:preview": "pnpm -F docs preview"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.11",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-v8": "^2.0.3",
"esbuild": "^0.23.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"esno": "^4.7.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.1",
"prettier": "^3.3.3",
"puppeteer": "^22.13.1",
"terser": "^5.31.3",
"typescript": "^5.5.3",
"unplugin-auto-import": "^0.18.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.3.4",
"vite-plugin-compression2": "^1.1.2",
"vite-plugin-singlefile": "^2.0.2",
"vitest": "^2.0.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": true
}
},
"engines": {
"node": ">=18",
"pnpm": ">=6"
}
}