-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 939 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 939 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
32
33
34
35
36
37
38
39
{
"name": "glitch2",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint libglitch glitcher",
"build:lib": "vite build --config vite.config.lib.ts",
"build:ui": "vite build",
"dev": "vite",
"preview": "vite preview",
"checkbuild": "tsc --noEmit 2>&1 && vite build 2>&1"
},
"author": "Aarni Koskela <akx@iki.fi>",
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3",
"gif.js": "^0.2.0",
"jpeg-js": "^0.4.4",
"less": "^4.5.1",
"lodash": "^4.17.23",
"mithril": "^2.3.8"
},
"devDependencies": {
"@types/gif.js": "^0.2.5",
"@types/mithril": "^2.2.7",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}