-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "source-engine-model-loader",
"version": "1.0.0",
"description": "three.js loader for parsing source engine models",
"main": "index.js",
"scripts": {
"start": "cd example && parcel serve ./*.html --dist-dir ../dist/ --no-cache --no-hmr",
"build": "cd example && parcel build ./*.html --dist-dir ../dist/ --no-cache --no-content-hash --public-url ./",
"lint": "eslint ./{src,example}/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/source-engine-model-loader.git"
},
"author": "Garrett Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/source-engine-model-loader/issues"
},
"homepage": "https://github.com/gkjohnson/source-engine-model-loader#readme",
"peerDependencies": {
"three": "^0.119.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"parcel": "^2.0.0",
"static-server": "^2.2.1",
"three": "^0.148.0"
}
}