forked from pmndrs/three-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.9 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "three-stdlib",
"version": "0.0.0-semantic-released",
"private": true,
"description": "stand-alone library of threejs examples",
"main": "index.cjs.js",
"module": "index.js",
"scripts": {
"build": "rollup -c && node ./scripts/createDeclarations.js && tsc --project tsconfig.dist.json && npm run copy",
"build-storybook": "build-storybook",
"copy": "copyfiles package.json README.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.husky=undefined; this.prettier=undefined; this.jest=undefined; this['lint-staged']=undefined;\"",
"lint": "eslint --cache --fix .",
"lint:ci": "eslint .",
"prebuild": "rimraf dist && npm run typegen",
"prepare": "npm run build",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"storybook": "start-storybook -p 6006",
"types": "tsc --noEmit",
"typegen": "tsc --emitDeclarationOnly"
},
"sideEffects": false,
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/three-stdlib.git"
},
"author": "Paul Henschel",
"maintainers": [
"Josh Ellis (https://github.com/joshuaellis)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pmndrs/three-stdlib/issues"
},
"homepage": "https://github.com/pmndrs/three-stdlib#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-parameters": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-controls": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-storysource": "^6.4.14",
"@storybook/addons": "^6.4.14",
"@storybook/builder-webpack5": "^6.4.14",
"@storybook/client-api": "^6.4.14",
"@storybook/html": "^6.4.14",
"@storybook/manager-webpack5": "^6.4.14",
"@storybook/preset-typescript": "^3.0.0",
"@types/draco3d": "^1.4.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-loader": "^8.2.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copyfiles": "^2.4.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"json": "^10.0.0",
"lint-staged": "^12.1.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recrawl": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.139.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"webpack": "^5.65.0"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@types/offscreencanvas": "^2019.6.4",
"@webgpu/glslang": "^0.0.15",
"chevrotain": "^10.1.2",
"draco3d": "^1.4.1",
"fflate": "^0.6.9",
"ktx-parse": "^0.4.5",
"mmd-parser": "^1.0.4",
"opentype.js": "^1.3.3",
"potpack": "^1.0.1",
"zstddec": "^0.0.2"
},
"peerDependencies": {
"three": ">=0.122.0"
}
}