-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "archaos",
"version": "0.7.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"deploy": "node ./.deploy/deploy.js",
"manifest": "node ./.deploy/manifest.js",
"release": "npm run test -- --run && npm run manifest && npm run build && npm run deploy",
"test": "vitest",
"test:engine": "npm test --workspace=packages/engine",
"test:e2e": "npx playwright test",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"keywords": [],
"author": "Lewis 'SEPTiMUS' Lane",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2.10.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^29.1.1",
"oxfmt": "^0.47.0",
"oxlint": "^1.56.0",
"phaser3spectorjs": "^0.0.8",
"playwright": "^1.58.2",
"pngjs": "^7.0.0",
"sass": "^1.98.0",
"typescript": "^6.0.3",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"vitest-browser-vue": "^2.1.0",
"vue-tsc": "^3.2.5"
},
"dependencies": {
"@archaos/engine": "*",
"@steelbreeze/state": "^8.3.1",
"@tauri-apps/api": "^2.10.1",
"phaser": "^4.1.0",
"vue": "^3.5.30"
}
}