-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 991 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
{
"name": "tuna-for-node",
"version": "0.2.4",
"description": "Nodejs wrapper around NKN Tuna",
"author": "Matija Gaspar <[email protected]>",
"license": "MIT",
"repository": "https://github.com/matijagaspar/tuna-for-node",
"homepage": "https://github.com/matijagaspar/tuna-for-node#README",
"main": "src/index.mjs",
"scripts": {
"postinstall": "node src/downloadTuna.mjs",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint ."
},
"engines": {
"node": ">=20"
},
"keywords": [],
"dependencies": {
"extract-zip": "^2.0.1",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"@eslint/eslintrc": "^3.0.2",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5"
}
}