-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "padlocal-http",
"version": "0.1.28",
"description": "make http api for Padlocal ts client",
"keywords": [
"padlocal",
"chatbot",
"weixin",
"wechat",
"wechaty",
"wechaty-puppet",
"http"
],
"author": "krapnikkk",
"license": "ISC",
"main": "dist/PadLocalHTTP.js",
"types": "dist/PadLocalHTTP.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -fr dist/*",
"build": "npm run clean && tsc",
"dev": "nodemon --exec ts-node dev/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krapnikkk/padlocal-http.git"
},
"bugs": {
"url": "https://github.com/krapnikkk/padlocal-http/issues"
},
"homepage": "https://github.com/krapnikkk/padlocal-http#readme",
"dependencies": {
"axios": "^0.21.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"music-metadata": "^7.5.0",
"padlocal-client-ts": "^0.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}