-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 936 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
43
{
"name": "phigros-save-manager",
"version": "1.0.13",
"description": "A simple library for handle phigros saves",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"repository": "https://github.com/lamadaemon/phigros-save-manager",
"author": "lamadaemon",
"license": "Anti-996",
"private": false,
"scripts": {
"test": "ava",
"build": "tsup"
},
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.5.1",
"commander": "^11.1.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/adm-zip": "^0.5.2",
"@types/commander": "^2.12.2",
"@types/node": "^22.7.7",
"ava": "^5.3.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0"
},
"ava": {
"files": [
"test/**"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}