-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "@nullcipherr/grit-engine",
"version": "0.1.0",
"description": "High-performance WebGL2 particle engine for interactive simulations.",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"demo": "vite examples/browser-demo --host",
"build": "vite build && npm run build:types",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "npm run build && node scripts/benchmark.mjs",
"benchmark:browser": "vite examples/browser-benchmark --host",
"profile": "npm run build && node scripts/profile.mjs",
"perf:check": "npm run build && node scripts/perf-regression-check.mjs"
},
"devDependencies": {
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^1.6.0"
}
}