-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.4 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
{
"name": "flow-profile",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Yuan Liu",
"description": "Deterministic, local-first context hygiene tool for Node-RED flows",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "vitest run && bun run --cwd packages/ui test && bun run --cwd apps/web test",
"test:watch": "vitest",
"test:update": "vitest --update",
"test:coverage": "vitest run --coverage && bun run --cwd packages/ui vitest run --coverage && bun run --cwd apps/web vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"build": "bun run --cwd packages/core build && bun run --cwd packages/ai build && bun run --cwd packages/cli build && bun run --cwd packages/ui build && bun run --cwd apps/web build",
"typecheck": "bun run --cwd packages/core typecheck && bun run --cwd packages/ai typecheck && bun run --cwd packages/cli typecheck && bun run --cwd packages/ui typecheck && bun run --cwd apps/web typecheck",
"check:core-compat": "bash scripts/check-browser-compat.sh",
"clean": "echo \"Clean disabled. Request explicit approval to run: rm -rf packages/*/dist apps/*/dist\" && exit 1",
"dev": "bun run --cwd apps/web dev",
"docs:api": "bun run docs:api:core && bun run docs:api:cli && bun run docs:api:ai && bun run docs:api:ui",
"docs:api:core": "typedoc --options typedoc.base.json --tsconfig packages/core/tsconfig.json --entryPoints packages/core/src/index.ts --out docs/api/core",
"docs:api:cli": "typedoc --options typedoc.base.json --tsconfig packages/cli/tsconfig.json --entryPoints packages/cli/src/index.ts --out docs/api/cli",
"docs:api:ai": "typedoc --options typedoc.base.json --tsconfig packages/ai/tsconfig.json --entryPoints packages/ai/src/index.ts --out docs/api/ai",
"docs:api:ui": "typedoc --options typedoc.base.json --tsconfig packages/ui/tsconfig.json --entryPoints packages/ui/src/index.ts --out docs/api/ui"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/node": "^25.1.0",
"@vitest/coverage-istanbul": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"fflate": "^0.8.2",
"happy-dom": "^20.5.0",
"typedoc": "^0.27.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.1.0"
}