-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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": "@internet/hotmaterial",
"version": "0.3.0",
"description": "Hot shader replacement and in-browser error handling",
"main": "index.js",
"module": "index.js",
"files": [
"index.js",
"three.js",
"src"
],
"scripts": {
"lint": "eslint src/**",
"example:regl": "webpack serve --config=./example/webpack.config.js -- regl",
"example:three": "webpack serve --config=./example/webpack.config.js -- three",
"prepublishOnly": "\"$npm_execpath\" run lint"
},
"repository": "[email protected]:pqml/hotmaterial.git",
"author": "pqml",
"license": "MIT",
"devDependencies": {
"@internet/eslint-config": "0.0.3",
"@internet/hmr": "^0.0.3",
"glsl-aastep": "^1.0.1",
"glslify-loader": "^2.0.0",
"raw-loader": "^0.5.1",
"regl": "^2.0.1",
"three": "^0.124.0",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@internet/dom": "^0.0.6"
},
"engines": {
"node": ">=8"
},
"eslintConfig": {
"rules": {
"import/no-webpack-loader-syntax": 0
},
"extends": [
"@internet"
]
}
}