-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "tiny-agent",
"version": "1.0.0",
"description": "A completely front-end driven AI agent project, requiring no server resources.",
"homepage": "https://github.com/muchenwei/tiny-agent#readme",
"bugs": {
"url": "https://github.com/muchenwei/tiny-agent/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muchenwei/tiny-agent.git"
},
"license": "Apache-2.0",
"author": "David Mu",
"type": "module",
"main": "index.js",
"scripts": {
"dev:web-app": "turbo run dev --filter=web-app",
"build:web-app": "turbo run build --filter=web-app",
"pack:chrome-extension": "pnpm --filter=mcp-bridge-extension run pack",
"postinstall": "simple-git-hooks",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-regexp": "^2.10.0",
"globals": "^16.5.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"turbo": "^2.8.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"packageManager": "pnpm@10.26.2",
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/{src,types}/**/*.{ts,tsx}": [
"eslint --quiet --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
],
"app/*/{src,types}/**/*.{ts,tsx}": [
"eslint --quiet --cache --fix"
],
"app/**/*.d.ts": [
"eslint --cache --fix"
]
}
}