-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "vtf-js",
"version": "0.9.1",
"description": "A javascript IO library for the Valve Texture Format.",
"author": "Koerismo",
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./utils": "./dist/core/utils.js",
"./resources": "./dist/core/resources.js"
},
"scripts": {
"test": "mocha",
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koerismo/vtf-js.git"
},
"keywords": [
"source-engine",
"vtf",
"valve"
],
"homepage": "https://github.com/koerismo/vtf-js#readme",
"bugs": {
"url": "https://github.com/koerismo/vtf-js/issues"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"sharp": "^0.33.5",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"dxt-js": "^0.0.3",
"pako": "^2.1.0"
}
}