-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 969 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 969 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
{
"name": "valence",
"version": "0.8.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --config vite.config.ts --typecheck.tsconfig tsconfig.test.json",
"test:watch": "vitest --config vite.config.ts --typecheck.tsconfig tsconfig.test.json",
"lint": "echo 'No linter configured yet'",
"build:tauri": "vite build --base=/",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"version": "bun scripts/sync-version.mjs",
"sync-version": "bun scripts/sync-version.mjs"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"jsme-editor": "^2024.4.29",
"mmff94-ts": "file:vendor/mmff94-ts-0.1.0-alpha.1.tgz",
"three": "^0.160.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.4",
"@types/three": "^0.160.0",
"typescript": "^5.3.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}