-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "shader-ast-gen",
"version": "1.0.0",
"description": "",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/shader-ast-gen.cjs",
"default": "./dist/shader-ast-gen.modern.js"
},
"main": "./dist/shader-ast-gen.cjs",
"module": "./dist/shader-ast-gen.module.js",
"unpkg": "./dist/shader-ast-gen.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamieowen/shader-ast-gen.git"
},
"author": "Jamie Owen",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamieowen/shader-ast-gen/issues"
},
"homepage": "https://github.com/jamieowen/shader-ast-gen#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"microbundle": "^0.15.0"
},
"dependencies": {
"@thi.ng/rstream": "^7.2.8",
"@thi.ng/shader-ast": "^0.12.10",
"@thi.ng/shader-ast-glsl": "^0.4.10",
"@thi.ng/transducers": "^8.3.5",
"clang-format": "^1.8.0",
"fs-extra": "^10.1.0"
}
}