-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "airshipone",
"version": "0.1.21",
"author": "Timeless Prototype",
"license": "MIT",
"homepage": "https://timelessp.github.io/airshipone/",
"private": true,
"type": "module",
"description": "Airship One web runtime and release tooling.",
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"build": "npm run build:version && vite build && npm run build:version:dist && npm run build:pwa",
"preview": "vite preview",
"build:version": "node scripts/write-version.mjs",
"build:version:dist": "node scripts/write-version.mjs --dist",
"build:pwa": "node scripts/build-sw.mjs",
"generate:module": "node scripts/generate-module-shell.mjs",
"release": "node scripts/release.mjs"
},
"dependencies": {
"@fontsource/intel-one-mono": "^5.2.2",
"@fontsource/inter": "^5.2.8",
"@fontsource/patrick-hand": "^5.2.8",
"three": "^0.181.1"
},
"devDependencies": {
"@types/three": "^0.181.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.34.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}