-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
47
{
"name": "nasne-checker",
"version": "3.0.1",
"description": "A tool to check resavation on nasne and post to slack.",
"scripts": {
"build": "rm -rf dist && ncc build src/main.ts --minify",
"dev": "ncc build src/main.ts --minify --v8-cache --source-map",
"lint": "eslint src/ && prettier --check src/",
"lint:fix": "eslint src/ --fix && prettier --write src/",
"prepublishOnly": "npm run lint && npm run build",
"watch": "ncc build src/main.ts --watch"
},
"bin": {
"nasne-checker": "dist/index.js"
},
"dependencies": {
"@slack/webhook": "~7.0.2",
"axios": "~1.6.4",
"commander": "~11.1.0",
"dayjs": "~1.11.10",
"node-schedule": "~2.1.1"
},
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "https://github.com/abcang/nasne-checker.git"
},
"bugs": {
"url": "https://github.com/abcang/nasne-checker/issues"
},
"homepage": "https://github.com/abcang/nasne-checker",
"author": "abcang <[email protected]> (https://abcang.net/)",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.6",
"@types/node-schedule": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}