-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "tderrors",
"version": "0.0.11",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/taidixiong233/errors#readme",
"repository": {
"type": "git",
"url": "https://github.com/taidixiong233/errors.git"
},
"bugs": {
"url": "https://github.com/taidixiong233/errors/issues"
},
"scripts": {
"lint": "eslint src",
"fix": "eslint src --fix",
"build": "npm run lint && tsc",
"clean": "node -e \"console.log('if used Linux, please use command that be named rm or other command to remove ./dist file dir.');\" && del /s /q .\\dist\\* /f >nul && rmdir /q .\\dist >nul",
"publishtonpm": "npm run build && npm publish",
"test": "npm run build && ts-node ./test/index.ts"
},
"author": "taidixiong233",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.1",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0"
},
"dependencies": {
"node-schedule": "^2.1.1",
"typescript": "^5.1.6"
}
}