-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.34 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
82
{
"name": "@walkeros/monorepo",
"private": true,
"workspaces": [
"packages/config",
"packages/cli",
"packages/core",
"packages/collector",
"packages/mcps/mcp",
"packages/mcps/source-browser",
"packages/transformers/*",
"packages/server/core",
"packages/server/destinations/*",
"packages/server/sources/*",
"packages/server/transformers/*",
"packages/server/stores/*",
"packages/stores/*",
"packages/web/core",
"packages/web/destinations/*",
"packages/web/sources/*",
"packages/web/sources/cmps/*",
"apps/quickstart",
"apps/walkerjs",
"apps/cli",
"apps/storybook-addon",
"apps/explorer",
"apps/demos/react",
"apps/demos/storybook",
"website"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/**'",
"build:apps": "turbo run build --filter='./apps/*'",
"build:website": "turbo run build --filter=@walkeros/website",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write .",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"reset": "rm -rf .turbo && rm -rf node_modules && npm ci",
"publish-docker": "npm run -w @walkeros/cli docker:publish",
"test": "turbo run test",
"test:coverage": "turbo run test --filter=!@walkeros/website --output-logs=errors-only -- --coverage --coverageReporters=text-summary --coverageReporters=lcov",
"test:integration": "turbo run test:integration --filter=@walkeros/cli --concurrency=1",
"prepare": "husky || true",
"validate:links": "npx tsx apps/scripts/validate-links.ts",
"validate:docs": "npx tsx apps/scripts/validate-docs.ts",
"validate": "npm run validate:links && npm run validate:docs"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@walkeros/config": "^3.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"turbo": "^2.6.3",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"packageManager": "npm@11.7.0",
"engines": {
"node": ">=20.0"
},
"browserslist": [
"> 0.2%",
"not dead"
],
"overrides": {
"@types/node": "^20.0.0",
"@eslint/eslintrc": {
"ajv": "^6.12.6"
},
"eslint": {
"ajv": "^6.12.6"
}
}
}