-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.23 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
{
"name": "agent-devtools-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "OSS in-page agent devtools for React/Vue/Next/Nuxt — BYO Claude subscription",
"license": "MIT",
"author": "Seungwoo Lee <seungwoo321@gmail.com>",
"homepage": "https://github.com/Seungwoo321/agent-devtools",
"repository": {
"type": "git",
"url": "https://github.com/Seungwoo321/agent-devtools.git"
},
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.1.1",
"scripts": {
"build": "pnpm -r --filter \"./packages/**\" run build",
"build:examples": "pnpm -r --filter \"./examples/**\" run build:check",
"smoke:examples": "pnpm -r --filter \"./examples/**\" run smoke:no-leak",
"smoke:integration": "node scripts/integration-smoke.mjs",
"typecheck": "pnpm -r run typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm -r --filter=!@agent-devtools/e2e run test",
"e2e": "pnpm --filter @agent-devtools/e2e test",
"e2e:install": "pnpm --filter @agent-devtools/e2e install:browsers",
"clean": "pnpm -r exec rm -rf dist .turbo node_modules/.cache",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"release:beta": "pnpm build && changeset version --snapshot beta && changeset publish --no-git-tag --snapshot --tag beta",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint-react/eslint-plugin": "^5.7.7",
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@parcel/watcher"
]
}
}