-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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": "tvs-painter",
"version": "0.6.0",
"description": "trivialspace painter - a low level webgl rendering engine optimized for live coding and post processing",
"repository": {
"type": "git",
"url": "git+https://github.com/trivial-space/painter.git"
},
"keywords": [
"webgl",
"graphics engine",
"live coding",
"post processing"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite --host",
"examples": "npm run dev",
"test:types": "tsc --noEmit",
"build": "rm -rf ./dist && tsc -p \"./tsconfig.build.json\""
},
"author": "Thomas Gorny",
"license": "MIT",
"bugs": {
"url": "https://github.com/trivial-space/painter/issues"
},
"homepage": "https://github.com/trivial-space/painter#readme",
"dependencies": {
"tvs-libs": "^0.10.0"
},
"devDependencies": {
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.0.0",
"gl-matrix": "3.4.3",
"glsl-fast-gaussian-blur": "^1.0.2",
"prettier": "^3.0.3",
"primitive-cube": "^2.0.1",
"primitive-sphere": "^3.0.0",
"typescript": "^5.1.3",
"vite": "^5.0.11",
"vite-plugin-list-directory-contents": "^1.4.5"
},
"engines": {
"node": ">=18.*"
}
}