-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "@voxelize/raycast",
"version": "1.0.8",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "yarn run build-fast --watch",
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "yarn run build-fast -- --dts-resolve",
"test": "vitest run",
"prepublishOnly": "yarn run build",
"start": "webpack serve --config example/webpack.config.js"
},
"repository": "https://github.com/shaoruu/voxel-physics-engine.git",
"author": "Ian Huang <[email protected]>",
"license": "MIT",
"dependencies": {
"@voxelize/voxel-aabb": "^1.0.0",
"tsup": "^5.12.7",
"typescript": "^4.6.4",
"vitest": "^0.10.4"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@types/gl-vec3": "^1.1.1",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"three": "^0.140.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}