forked from JamesLMilner/THREEAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@mn-pollinators/threear",
"version": "1.0.3",
"description": "A marker based Augmented Reality library for Three.js",
"keywords": [
"AR",
"Augmented Reality",
"three.js",
"Marker Based",
"artoolkit"
],
"browser": "dist/THREEAR.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mn-pollinators/THREEAR.git"
},
"scripts": {
"serve": "live-server --cors",
"build:prod": "webpack --mode=production --config webpack.config.js",
"build:dev": "webpack --mode=development --config webpack.config.js",
"build:watch": "webpack --mode=development --config webpack.config.js --watch",
"lint": "tslint src/**/*.ts && prettier **/*.ts --check",
"lint:fix": "tslint --fix src/**/*.ts && prettier **/*.ts --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "James Milner",
"license": "MIT and LGPLv3",
"peerDependencies": {
"three": "^0.122.0"
},
"devDependencies": {
"@types/three": "^0.103.2",
"live-server": "^1.2.1",
"prettier": "^2.1.2",
"prettier-webpack-plugin": "^1.2.0",
"ts-loader": "^8.0.11",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"types": "dist/THREEAR.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}