-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "typed-glsl",
"version": "0.11.2",
"description": "A type-safe way to create WebGL 1/2 shader programs and set their attributes",
"keywords": [
"TypeScript",
"glsl",
"webgl",
"webgl2",
"shader"
],
"homepage": "https://github.com/Lusito/typed-glsl",
"bugs": {
"url": "https://github.com/Lusito/typed-glsl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lusito/typed-glsl.git"
},
"license": "Zlib",
"author": "Santo Pfingsten",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release"
},
"devDependencies": {
"@lusito/eslint-config": "^3.1.0",
"@lusito/mono": "^0.15.1",
"@lusito/prettier-config": "^3.1.0",
"@lusito/tsconfig": "^1.0.2",
"rimraf": "^5.0.7",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.5"
}
}