-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "hlviewer.js",
"version": "0.8.2",
"description": "View GoldSrc maps and replays in browser",
"keywords": [
"hlviewer",
"half-life",
"halflife",
"goldsrc",
"kreedz"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/hlviewer.min.js",
"module": "dist/hlviewer.js",
"exports": {
".": {
"import": "./dist/hlviewer.js",
"require": "./dist/hlviewer.min.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyrim/hlviewer.js.git"
},
"author": "Stefan Stojkovic <[email protected]> (https://stefan100.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skyrim/hlviewer.js/issues"
},
"homepage": "https://skyrim.github.io/hlviewer.js",
"dependencies": {
"gl-matrix": "^3.4.3",
"nanoevents": "^9.0.0",
"solid-js": "^1.8.22"
},
"devDependencies": {
"@types/gl-matrix": "^3.2.0",
"@types/pngjs": "^6.0.5",
"pngjs": "^7.0.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-solid": "^2.10.2"
}
}