-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.33 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
55
56
57
58
59
60
{
"name": "@lakuna/ugl",
"version": "25.0.0",
"description": "A lightweight WebGL2 library.",
"keywords": [
"front-end"
],
"homepage": "https://ugl.lakuna.pw",
"bugs": {
"url": "https://github.com/Lakuna/ugl/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Travis Martin",
"email": "[email protected]",
"url": "https://www.lakuna.pw/"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Lakuna"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "github:Lakuna/ugl"
},
"scripts": {
"build": "tsc",
"lint": "eslint src",
"doc": "typedoc src",
"beautify": "prettier . --write"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/offscreencanvas": "^2019.7.3",
"@types/webgl2": "^0.0.11",
"@types/webxr": "^0.5.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typedoc": "^0.27.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"type": "module",
"sideEffects": false
}