-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "@shaderfrog/glsl-parser",
"engines": {
"node": ">=16"
},
"version": "5.3.2",
"type": "module",
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
"scripts": {
"prepare": "npm run build && ./prepublish.sh",
"postpublish": "./postbuild.sh",
"build": "./build.sh",
"watch-test": "jest --watch",
"test": "jest --colors"
},
"files": [
"ast",
"index.d.ts",
"error.d.ts",
"index.js",
"parser",
"preprocessor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ShaderFrog/glsl-parser.git"
},
"keywords": [
"glsl",
"parser",
"shaderfrog"
],
"author": "Andrew Ray",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShaderFrog/glsl-parser/issues"
},
"homepage": "https://github.com/ShaderFrog/glsl-parser#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"jest": "^29.7.0",
"peggy": "^1.2.0",
"prettier": "^2.1.2",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.5.3"
}
}