-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.49 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": "solidion",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts"
},
"./recs": {
"import": "./src/recs/index.ts"
},
"./core": {
"import": "./src/core/index.ts"
},
"./debug": {
"import": "./src/debug/index.ts"
},
"./renderer": {
"import": "./src/renderer.ts"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:browser:coverage": "vitest run --config vitest.browser.config.ts --coverage",
"test:coverage": "vitest run --coverage",
"generate:types": "npx tsx scripts/generate-types.ts",
"build:examples": "npx tsx scripts/build-examples.ts",
"sync:examples": "npx tsx scripts/build-examples.ts --sync",
"build:site": "cd site && npm install && npx astro build",
"build": "npm run build:examples && npm run build:site"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"phaser": "^3.90.0",
"solid-js": "^1.9.11"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"babel-preset-solid": "^1.9.10",
"jsdom": "^29.0.1",
"@playwright/test": "1.56.1",
"playwright": "1.56.1",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.1.0"
}
}