-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "shadergraph",
"version": "2.1.3",
"description": "GLSL linker",
"repository": {
"type": "git",
"url": "https://github.com/unconed/shadergraph.git"
},
"main": "src/index.js",
"files": [
"/src",
"build",
"*.md"
],
"scripts": {
"build": "webpack --mode development",
"dev": "webpack --mode development --progress --colors --watch",
"test": "gulp test"
},
"prettier": {},
"dependencies": {
"@sicmutils/glsl-parser": "^2.0.1",
"glsl-tokenizer": "^2.1.5"
},
"peerDependencies": {
"three": ">= 0.72.0"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-plugin-jasmine": "^4.1.2",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-watch": "^5.0.1",
"jasmine-core": "^3.7.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"prettier": "2.3.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-stream": "^6.1.2"
},
"author": "Steven Wittens",
"license": "MIT"
}