-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 2.33 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ecsy-three",
"version": "0.1.3",
"description": "ECSY three.js bindings",
"main": "./cjs/index.js",
"module": "./src/index.js",
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./src/index.js"
}
},
"files": [
"index.js",
"/src",
"/cjs"
],
"types": "src/index.d.ts",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npm run build:docs && npm run build:site && npm run build:cjs",
"build:docs": "rimraf site/docs/README.md site/docs/api && cp README.md site/docs/README.md && rimraf site/docs/api/_sidebar.md; typedoc --readme none --mode file --excludeExternals --plugin typedoc-plugin-markdown --hideSources --hideBreadcrumbs --out site/docs/api/ --includeDeclarations --includes 'src/**/*.d.ts' src; touch site/docs/api/_sidebar.md",
"build:site": "webpack --mode production",
"build:cjs": "rimraf cjs && babel src -d cjs",
"lint": "eslint src examples",
"deploy": "np",
"gh-pages": "gh-pages --dist=./site --dotfiles=true",
"prepublishOnly": "npm run build",
"postdeploy": "npm run gh-pages"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^5.0.0",
"ecsy": "^0.4.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"gh-pages": "^2.1.1",
"http-server": "^0.12.3",
"np": "^6.2.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"three": "^0.119.1",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.4.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"ecsy": "*",
"three": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozillareality/ecsy-three.git"
},
"author": "Mozilla Reality <[email protected]> (https://mixedreality.mozilla.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozillareality/ecsy-three/issues"
},
"homepage": "https://github.com/mozillareality/ecsy-three#readme"
}