-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 6 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 6 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "typeagent-root",
"version": "0.0.1",
"private": true,
"description": "TypeAgent TypeScript Workspace Root",
"keywords": [],
"homepage": "https://github.com/microsoft/TypeAgent#readme",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeAgent.git",
"directory": "ts"
},
"license": "MIT",
"author": "Microsoft",
"scripts": {
"api": "pnpm -C packages/api exec npm run start",
"build": "fluid-build . -t build",
"build:ext:vscode": "fluid-build . -t build:ext:vscode",
"build:msi:local": "node tools/scripts/build-msi-local.mjs",
"build:shell": "fluid-build agent-shell -t build --dep",
"bundle:agent-server": "node tools/scripts/bundleAgentServer.mjs",
"bundle:copilot-plugin": "node tools/scripts/stageCopilotPlugin.mjs",
"check:dep": "node tools/scripts/fix-dependabot-alerts.mjs --dry-run",
"check:dep:fix": "node tools/scripts/fix-dependabot-alerts.mjs",
"check:link": "git ls-tree -r --name-only HEAD .. | grep \\.md | xargs markdown-link-check",
"check:policy": "node tools/scripts/repo-policy-check.mjs",
"check:policy:fix": "node tools/scripts/repo-policy-check.mjs --fix",
"clean": "fluid-build . -t clean",
"cli": "pnpm -C packages/cli run start",
"cli:dev": "pnpm -C packages/cli run start:dev",
"code-circular": "npx tsx tools/scripts/code/circularDepsReport.ts",
"code-complexity": "npx tsx tools/scripts/code/complexityReport.ts",
"code-complexity:ci": "npm run code-complexity -- --ratchet --base origin/main --cyclomatic 25 --cognitive 30 --new-file-cyclomatic 25 --new-file-cognitive 30",
"code-consistency": "npx tsx tools/scripts/code/consistencyReport.ts",
"code-deadcode": "npx tsx tools/scripts/code/deadCodeReport.ts",
"code-debt": "npx tsx tools/scripts/code/debtMarkersReport.ts",
"code-duplication": "npx tsx tools/scripts/code/duplicationReport.ts",
"code-lint": "npx tsx tools/scripts/code/lintReport.ts",
"copilot": "node packages/copilot-plugin/scripts/launch.mjs",
"copilot:dev": "node packages/copilot-plugin/scripts/launch-dev.mjs",
"devtunnel:setup": "node tools/scripts/setup-devtunnel.mjs",
"devtunnel:status": "node tools/scripts/list-tunnels.mjs",
"docs:action-browser": "node tools/actionBrowser/dist/cli.js",
"docs:generate": "node tools/docsAutogen/bin/docs-autogen.cjs --render --write",
"docs:generate:dry": "node tools/docsAutogen/bin/docs-autogen.cjs --render --dry-run",
"docs:generate:llm": "node tools/docsAutogen/bin/docs-autogen.cjs --render --write --llm",
"docs:verify-links": "node tools/docsAutogen/bin/docs-autogen.cjs --verify-links --all",
"elevate": "node tools/scripts/elevate.js",
"getKeys": "node tools/scripts/getKeys.mjs",
"getKeys:build": "node tools/scripts/getKeys.mjs --vault build-pipeline-kv",
"getNPMRC": "node tools/scripts/getNPMRC.mjs",
"postinstall": "pnpm run postinstall:better-sqlite3-node-copy && pnpm run postinstall:better-sqlite3-node-restore && pnpm run postinstall:merge-driver",
"install:ext:vscode": "fluid-build . -t install:ext:vscode",
"knowledgeVisualizer": "pnpm -C packages/knowledgeVisualizer exec npm run start",
"kv": "pnpm -C packages/knowledgeVisualizer exec npm run start",
"line-histogram": "npx tsx tools/scripts/lineHistogram.ts",
"lint": "fluid-build . -t prettier && pnpm run code-lint -- --ratchet",
"lint:fix": "pnpm run code-lint -- --fix --changed && pnpm run prettier:fix",
"montage": "pnpm -C packages/montage exec npm run start",
"postinstall:better-sqlite3-node-copy": "node ./tools/scripts/copy-better-sqlite3-node.js",
"postinstall:better-sqlite3-node-restore": "node ./tools/scripts/restore-better-sqlite3-node.js",
"postinstall:merge-driver": "node tools/scripts/setup-merge-driver.mjs",
"prettier": "prettier --check .",
"prettier:changed": "node tools/scripts/prettier-changed.mjs",
"prettier:changed:fix": "node tools/scripts/prettier-changed.mjs --write",
"prettier:fix": "prettier --write .",
"rebuild": "fluid-build . -t build --rebuild",
"regen": "pnpm -C packages/cli run regen",
"regen:builtin": "pnpm -C packages/cli run regen:builtin",
"setup": "node tools/scripts/setupWorktree.mjs",
"shell": "pnpm -C packages/shell run start",
"shell:dev": "pnpm -C packages/shell run dev",
"shell:nosandbox": "pnpm -C packages/shell run start:nosandbox",
"shell:package": "pnpm -C packages/shell run package",
"shell:smoke": "pnpm -C packages/shell run shell:smoke",
"shell:start:package": "pnpm -C packages/shell run start:package",
"shell:test": "pnpm -C packages/shell run shell:test",
"start:agent-server": "pnpm -C packages/agentServer/server run start",
"start:agent-server:tunnel": "pnpm -C packages/agentServer/server run start:tunnel",
"start:mcp": "pnpm -C packages/commandExecutor run start",
"stop:agent-server": "pnpm -C packages/agentServer/server run stop",
"telemetry:grafana": "node tools/scripts/startLocalTelemetry.mjs",
"test": "pnpm run test:local && pnpm run test:live && pnpm run shell:test",
"test:keys": "npx tsx tools/scripts/testServiceKeys.ts",
"test:live": "pnpm -r ---no-bail -no-sort --stream --workspace-concurrency=1 run test:live",
"test:local": "pnpm -r --no-bail --no-sort --stream --workspace-concurrency=3 run test:local",
"test:ui": "pnpm -r --no-bail --no-sort --stream --if-present run test:ui"
},
"devDependencies": {
"@fluidframework/build-tools": "^0.57.0",
"@types/node": "^22.0.0",
"esbuild": "0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-sonarjs": "^4.1.0",
"jscpd": "^4.2.5",
"knip": "^6.24.0",
"madge": "^8.0.0",
"markdown-link-check": "^3.14.2",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"tsx": "^4.21.0",
"typescript-eslint": "^8.62.1"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"engines": {
"node": ">=22",
"pnpm": ">=10"
}
}