-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
73 lines (73 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "notify-server",
"version": "1.0.0",
"description": "使用TypeScript运行和开发的nodejs技术栈的微信消息通知项目",
"keywords": [
"女朋友",
"微信",
"微信通知",
"土味情话",
"天气",
"早安"
],
"homepage": "https://github.com/JS-banana/notify-server#readme",
"bugs": {
"url": "https://github.com/JS-banana/notify-server/issues"
},
"license": "GPL-3.0 license",
"repository": {
"type": "git",
"url": "git+https://github.com/JS-banana/notify-server.git"
},
"author": "JS-banana <sss213018@163.com>",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint --ext .js,.ts .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"depoly:start": "pm2 start ecosystem.config.js",
"depoly:stop": "pm2 stop ecosystem.config.js",
"depoly:status": "pm2 status ecosystem.config.js",
"depoly:log": "pm2 log",
"test": "echo 你好~"
},
"dependencies": {
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.14.0",
"@antfu/ni": "^0.12.0",
"@types/node": "^17.0.0",
"bumpp": "^7.1.1",
"chalk": "4.1.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^0.13.0",
"node-cron": "^3.0.2",
"pm2": "^5.2.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"unbuild": "^0.6.7",
"vite": "^2.7.3"
}
}