-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "@natsuneko-laboratory/vpmpackage",
"version": "0.1.3",
"description": "Operate VPMPackage from Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/natsuneko-laboratory/vpmpackage.git",
"author": "Natsune Mochizuki <me@natsuneko.cat>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"prepare": "npm run build",
"lint:eslint": "eslint --ext 'src/**/*.{ts,js}'",
"lint:prettier": "prettier --check 'src/**/*.{ts,js}'",
"fix:eslint": "eslint --fix 'src/**/*.{ts,js}'",
"fix:prettier": "prettier --write 'src/**/*.{ts,js}'"
},
"dependencies": {
"adm-zip": "^0.5.10",
"fs-extra": "^11.1.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}