-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.55 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
{
"name": "workfile-monorepo",
"private": true,
"version": "0.9.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"description": "pnpm workspace for @illodev/workfile and its provider packages. The published manifests live under packages/.",
"repository": {
"type": "git",
"url": "git+https://github.com/illodev/workfile.git"
},
"homepage": "https://github.com/illodev/workfile#readme",
"bugs": {
"url": "https://github.com/illodev/workfile/issues"
},
"scripts": {
"prepare": "husky",
"workfile": "node packages/workfile/dist/bin/workfile.js",
"clean": "pnpm --filter @illodev/workfile run clean",
"version": "node ./scripts/sync-workspace-versions.ts --stage",
"build:core": "pnpm --filter @illodev/workfile run build:core",
"build:ui": "pnpm --filter @illodev/workfile run build:ui",
"typecheck:ui": "pnpm --filter @illodev/workfile run typecheck:ui",
"typecheck:api": "pnpm --filter @illodev/workfile run typecheck:api",
"demo:data": "pnpm --filter @illodev/workfile run demo:data",
"build:demo": "pnpm --filter @illodev/workfile run build:demo",
"build": "pnpm --filter @illodev/workfile run build",
"build:plugin": "node ./scripts/build-plugin.ts",
"strict": "pnpm --filter @illodev/workfile run strict",
"test": "pnpm --filter @illodev/workfile run test && pnpm --filter @illodev/workfile-search-local run test",
"check": "pnpm run build && pnpm run build:plugin && pnpm run strict && pnpm run test",
"smoke:package": "pnpm --filter @illodev/workfile run smoke:package",
"audit:consumer": "node ./scripts/audit-consumer.ts",
"check:release": "pnpm run check && pnpm audit --audit-level=moderate && pnpm run audit:consumer && pnpm run smoke:package",
"bench": "pnpm --filter @illodev/workfile run bench",
"screenshots": "pnpm run build && node ./scripts/screenshots.ts",
"doctor": "node packages/workfile/dist/bin/workfile.js doctor",
"schema": "node packages/workfile/dist/bin/workfile.js schema",
"serve": "node packages/workfile/dist/bin/workfile.js ui",
"project": "workfile ui",
"project:doctor": "workfile doctor",
"project:agents": "workfile agents sync",
"project:mcp": "workfile mcp"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@illodev/workfile": "workspace:*",
"husky": "^9.1.7",
"playwright": "^1.62.0"
},
"pnpm": {
"overrides": {
"fast-uri": "^3.1.5",
"hono": "^4.12.34",
"nanoid": "^3.3.17",
"js-yaml": "^4.3.1"
}
}
}