-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 1.36 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
{
"name": "@binzume/aframe-vrm",
"description": "VRM components for A-Frame",
"version": "0.2.0",
"type": "module",
"main": "dist/aframe-vrm.module.js",
"files": [
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx tsc --noEmit --allowJs --moduleResolution node --target ES2019 src/module-index.js src/types.d.ts",
"build-module": "npx esbuild src/module-index.js --minify-syntax --sourcemap --bundle --format=esm --outfile=dist/aframe-vrm.module.js",
"build-min": "npx esbuild src/aframe-vrm.js --minify --sourcemap --bundle --format=iife --external:three --outfile=dist/aframe-vrm.min.js",
"build-js": "npx esbuild src/aframe-vrm.js --target=es2019 --sourcemap --bundle --format=iife --outfile=dist/aframe-vrm.js",
"build": "npm run build-js && npm run build-min && npm run build-module"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binzume/aframe-vrm.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/binzume/aframe-vrm/issues"
},
"homepage": "https://github.com/binzume/aframe-vrm#readme",
"devDependencies": {
"@types/aframe": "^1.0.3",
"@types/cannon": "^0.1.5",
"@types/node": "^14.17.3",
"@types/three": "^0.129.1",
"esbuild": "^0.12.9",
"typescript": "^4.3.4"
}
}