-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 859 Bytes
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
{
"name": "glsl-script",
"private": false,
"version": "1.0.2",
"description": "A lightweight, declarative WebGL2 micro-framework for modern browsers. It simplifies shader-centric programming by abstracting boilerplate, letting you focus on GLSL.",
"author": "Ucok Isa Lubis <ulubis98@gmail.com>",
"type": "module",
"main": "./dist/glsl-script.umd.js",
"module": "./dist/glsl-script.es.js",
"types": "./dist/glsl.d.ts",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"prepublishOnly": "npm run build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Ucok23/glsl-script.git"
}
}