-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 973 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
{
"name": "equation",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"web": "vite",
"web:build": "vite build",
"shots": "node scripts/screenshots.ts",
"icons": "node scripts/icons.ts",
"deploy": "wrangler types && vite build && wrangler deploy",
"typecheck": "wrangler types && tsc --noEmit && tsc -p web --noEmit && tsc -p worker --noEmit",
"test:editor": "node scripts/editor-test.ts",
"bench": "vitest bench --run",
"perf": "node scripts/perf.ts",
"perf:update": "node scripts/perf.ts --update"
},
"private": true,
"license": "UNLICENSED",
"homepage": "https://equation.io/",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.45.1",
"@types/node": "^24.0.0",
"playwright": "^1.61.1",
"typescript": "^7.0.2",
"vite": "^7.3.6",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
}
}