@endge/nova 0.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/dist/index.d.ts +8919 -0
- package/dist/nova.js +18498 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@endge/nova",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.13.3",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./dist/nova.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/nova.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"sideEffects": false,
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@endge/raph": "^3.0.0",
|
|
20
|
+
"@endge/utils": "^0.23.0",
|
|
21
|
+
"class-transformer": "^0.5.1",
|
|
22
|
+
"gl-matrix": "^3.4.3",
|
|
23
|
+
"rbush": "^4.0.1"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
27
|
+
"@types/rbush": "^4.0.0",
|
|
28
|
+
"@vue/tsconfig": "^0.7.0",
|
|
29
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
30
|
+
"jsdom": "^26.1.0",
|
|
31
|
+
"rimraf": "^6.0.1",
|
|
32
|
+
"typescript": "~5.7.3",
|
|
33
|
+
"vite": "^6.1.0",
|
|
34
|
+
"vite-plugin-dts": "^4.5.0",
|
|
35
|
+
"vitest": "^3.2.4",
|
|
36
|
+
"vue-tsc": "^2.2.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
40
|
+
"dev": "vite build --watch",
|
|
41
|
+
"dev:watch": "vite build --watch",
|
|
42
|
+
"build": "vite build",
|
|
43
|
+
"pretest": "pnpm --filter @endge/utils build && pnpm --filter @endge/raph build",
|
|
44
|
+
"test": "vitest run --config vite.config.ts",
|
|
45
|
+
"test:perf": "vitest run --config vite.config.ts src/tests/**/*.performance.test.ts",
|
|
46
|
+
"bench": "NODE_OPTIONS=--max-old-space-size=8192 vitest bench --run --config vite.config.ts",
|
|
47
|
+
"test:coverage": "vitest run --config vite.config.ts --coverage"
|
|
48
|
+
}
|
|
49
|
+
}
|