-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (41 loc) · 1.05 KB
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
{
"name": "uirenderer-canvas",
"version": "1.1.1",
"description": "Minimal 2D UI system for the Web",
"keywords": ["canvas", "webgl", "visualization", "ui"],
"author": "Inês Almeida",
"license": "MIT",
"homepage": "https://github.com/britalmeida/uirenderer-canvas#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/britalmeida/uirenderer-canvas.git"
},
"bugs": "https://github.com/britalmeida/uirenderer-canvas/issues",
"type": "module",
"main": "index.ts",
"files": [
"glsl/",
"src/",
"types/",
"assets/*.ts",
"index.ts",
"README.md",
"LICENSE"
],
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint",
"build:types": "tsc",
"prepublishOnly": "yarn run build:types"
},
"devDependencies": {
"typescript": "5.8.3",
"typescript-eslint": "8.29.1",
"@typescript-eslint/parser": "8.29.1",
"@typescript-eslint/eslint-plugin": "8.29.1",
"eslint": "9.24.0",
"@eslint/js": "9.24.0",
"vite": "6.2.6",
"vite-plugin-glsl": "1.4.0"
}
}