-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 898 Bytes
/
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
{
"name": "dmi-ts",
"version": "0.3.3",
"description": "A tool for reading and manipulating BYOND DMI files.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"dmi",
"byond"
],
"author": "asciodev",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/asciodev/dmi-ts"
},
"bugs": {
"url": "https://github.com/asciodev/dmi-ts/issues"
},
"homepage": "https://github.com/asciodev/dmi-ts#readme",
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@types/node": "^22.10.2",
"@types/pako": "^2.0.3",
"image-js": "^0.35.6",
"pako": "^2.1.0"
}
}