-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "@opentiny/tiny-agent",
"version": "0.0.1",
"description": "agent tool collection",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm --filter @opentiny/tiny-agent-* build",
"pub": "pnpm --filter @opentiny/tiny-agent-* publish --no-git-check",
"updateVersion": "node update-version.js",
"dev:demo": "pnpm --filter demo-web dev",
"dev:demo-server": "pnpm --filter demo-server dev",
"dev": "concurrently \"pnpm dev:demo-server\" \"pnpm dev:demo\"",
"docs:dev": "pnpm --filter docs run docs:dev",
"docs:build": "pnpm --filter docs run docs:build",
"docs:preview": "pnpm --filter docs run docs:preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentiny/tiny-agent.git"
},
"keywords": [
"opentiny",
"agent",
"mcp",
"task scheduler",
"browser action"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentiny/tiny-agent/issues"
},
"homepage": "https://github.com/opentiny/tiny-agent#readme",
"devDependencies": {
"@eslint/js": "^9.27.0",
"concurrently": "^9.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint": "^9.27.0",
"eslint-plugin-import-x": "^4.13.1",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-regexp": "^2.7.0",
"globals": "^16.2.0",
"prettier": "^3.3.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.32.1",
"commander": "^11.1.0",
"glob": "^10.3.10",
"chalk": "^5.3.0",
"ora": "^7.0.1"
}
}