forked from rjx18/codor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 897 Bytes
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
{
"name": "codor",
"version": "0.1.0",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=22"
},
"scripts": {
"audit:license": "node scripts/license-audit.mjs",
"audit:release": "node scripts/release-audit.mjs",
"build": "pnpm -r build",
"build:icons": "node scripts/build-icons.mjs",
"lint": "pnpm -r --if-present lint",
"release:check": "pnpm test:all && pnpm audit:license && pnpm audit:release",
"test": "pnpm -r test",
"test:all": "pnpm -r build && pnpm -r test && pnpm --filter @codor/web e2e"
},
"devDependencies": {
"@resvg/resvg-js": "2.6.2",
"@types/node": "^22.8.0",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"sodium-native",
"udx-native"
]
}
}