-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
75
76
77
78
79
80
81
{
"name": "@ppagent/plugin-sample",
"version": "0.0.39",
"description": "ppagent sample",
"types": "dist/plugin.d.ts",
"main": "dist/plugin.js",
"displayName": "PP智能体示例插件",
"type": "module",
"author": "ppagent",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "esbuild \"src/**/*.ts\" --platform=node --outdir=build --resolve-extensions=.js --out-extension:.js=.js --format=esm",
"build:docker": "docker build . -t @ppagent/sample --build-arg APP_ENV=production --progress=plain",
"start": "node build",
"tsx": "cross-env NODE_ENV=development tsx src/index.ts",
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"build:plugin": "node build.plugin.js",
"test": "vitest",
"test:watch": "vitest -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppagent/ppagent"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"/dist"
],
"engines": {
"node": ">=20"
},
"keywords": [
"ppagent",
"chat",
"wechat",
"chatbot"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ppagent/ppagent/issues"
},
"homepage": "https://github.com/ppagent/ppagent",
"dependencies": {
"dotenv": "^16.4.5"
},
"peerDependencies": {
"emittery": "^1.0.3",
"ppagent": "^0.0.37"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"pino-pretty": "^11.3.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vitest": "^2.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"ffmpeg-static",
"protobufjs"
]
}
}