-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "apecs",
"version": "0.1.0",
"description": "A high-performance archetype ECS for TypeScript.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/diffusionstudio/apecs.git"
},
"homepage": "https://github.com/diffusionstudio/apecs#readme",
"bugs": "https://github.com/diffusionstudio/apecs/issues",
"keywords": [
"ecs",
"entity-component-system",
"archetype",
"game-engine",
"typescript",
"simulation"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
},
"./solid": {
"types": "./dist/solid/index.d.ts",
"import": "./dist/solid/index.js"
},
"./internal": {
"types": "./dist/internal.d.ts",
"import": "./dist/internal.js"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20.19"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"test:dev": "vitest run --project dev",
"test:prod": "vitest run --project prod",
"test:types": "vitest run --project types",
"test:api": "vitest run tests/api",
"test:alloc": "node --expose-gc ./node_modules/vitest/vitest.mjs run --project dev",
"bench": "npm run build && vitest bench --run",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"bench:ci": "npm run build && vitest bench --run --outputJson=bench/results.json && node scripts/bench-report.mjs bench/results.json",
"check:bundle": "node scripts/check-bundle.mjs",
"bench:compare": "cd bench/compare && node run.mjs && node report.mjs",
"bench:compare:verify": "cd bench/compare && node verify.mjs",
"example:water": "npm --prefix examples/gpu-water run dev",
"example:reader": "npm --prefix examples/gpu-reader run dev"
},
"peerDependencies": {
"react": ">=18",
"solid-js": ">=1.8"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"jsdom": "^27.4.0",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"solid-js": "^1.9.15",
"tsdown": "^0.21.10",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}