-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 KB
/
package.json
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
{
"name": "bvh.js",
"version": "0.0.13",
"description": "Dynamic BVH implementation based on Erin Catto's paper.",
"author": "Andrea Gargaro <devgargaro@gmail.com>",
"license": "MIT",
"type": "module",
"module": "build/index.js",
"main": "build/index.cjs",
"types": "src/index.d.ts",
"homepage": "https://github.com/agargaro/bvh.js#readme",
"repository": "https://github.com/agargaro/bvh.js",
"exports": {
".": {
"import": {
"types": "./src/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./src/index.d.ts",
"default": "./build/index.cjs"
}
}
},
"keywords": [
"bvh",
"raycast",
"frustum-culling",
"bounds-hierarchy",
"performance",
"three",
"intersection",
"acceleration",
"spatial-indexing"
],
"scripts": {
"start": "vite",
"build": "vite build && tsc --build tsconfig.build.json",
"lint": "npx eslint --fix",
"test": "echo todo add tests",
"publish-patch": "npm version patch --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-minor": "npm version minor --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-major": "npm version major --git-tag-version false && npm run build && cd dist && npm publish --access public"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.12.1",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^5.4.11",
"vite-plugin-static-copy": "^1.0.6"
}
}