-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.24 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
{
"name": "@millsydotdev/spark",
"version": "0.1.0",
"description": "Spark Physics Engine — A 3D rigid body physics engine for the web, built on WASM",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./standard": "./dist/spark.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc",
"build:wasm": "bash scripts/docker-build.sh",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run build:ts"
},
"engines": {
"node": ">=22"
},
"keywords": [
"physics",
"3d",
"wasm",
"webassembly",
"simd",
"rigid-body",
"game",
"simulation",
"spark"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/millsydotdev/spark.git"
},
"bugs": {
"url": "https://github.com/millsydotdev/spark/issues"
},
"homepage": "https://github.com/millsydotdev/spark#readme",
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}