-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.92 KB
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
74
{
"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 <oooooohoney@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": "vitest run"
},
"dependencies": {
"axios": "^1.12.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"yaml": "^2.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@antfu/ni": "^0.12.0",
"@types/node": "^22.10.6",
"bumpp": "^7.1.1",
"chalk": "4.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^4.8.0",
"node-cron": "^4.2.1",
"pm2": "^6.0.10",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"unbuild": "^3.2.1",
"vitest": "^2.1.8"
}
}