-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 953 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 953 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": "cool-retro-term-webgl",
"version": "1.0.0",
"description": "A WebGL-based CRT terminal renderer for XTerm.js with authentic retro effects",
"type": "module",
"scripts": {
"build": "tsup --minify",
"dev": "concurrently \"tsup --watch\" \"http-server -p 8080 -c-1\"",
"lint-and-format": "npx @biomejs/biome check --write --unsafe",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"terminal",
"xterm",
"crt",
"retro",
"webgl",
"three.js",
"cool-retro-term"
],
"author": "Remo H. Jansen",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/remojansen/remojansen.github.io"
},
"devDependencies": {
"@types/three": "^0.182.0",
"concurrently": "^9.2.1",
"http-server": "^14.1.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/stats.js": "^0.17.4",
"@xterm/xterm": "^6.0.0",
"cool-retro-term-renderer": "^1.0.0"
}
}