-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.22 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.22 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
110
111
112
113
114
115
116
117
{
"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:shell": "fluid-build agent-shell -t build --dep",
"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",
"elevate": "node tools/scripts/elevate.js",
"getKeys": "node tools/scripts/getKeys.mjs",
"getKeys:build": "node tools/scripts/getKeys.mjs --vault build-pipeline-kv",
"postinstall": "pnpm run postinstall:better-sqlite3-node-copy && pnpm run postinstall:better-sqlite3-node-restore",
"knowledgeVisualizer": "pnpm -C packages/knowledgeVisualizer exec npm run start",
"kv": "pnpm -C packages/knowledgeVisualizer exec npm run start",
"lint": "fluid-build . -t prettier",
"lint:fix": "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",
"prettier": "prettier --check .",
"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",
"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:mcp": "pnpm -C packages/commandExecutor run start",
"stop:agent-server": "pnpm -C packages/agentServer/server run stop",
"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=1 run test:local"
},
"devDependencies": {
"@fluidframework/build-tools": "^0.57.0",
"@types/node": "^20.17.28",
"markdown-link-check": "^3.14.2",
"prebuild-install": "^7.1.3",
"prettier": "^3.5.3",
"shx": "^0.4.0"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"pnpm": {
"onlyBuiltDependencies": [
"@azure/msal-node-extensions",
"@azure/msal-node-runtime",
"@vscode/vsce-sign",
"better-sqlite3",
"canvas",
"electron",
"electron-winstaller",
"esbuild",
"exifreader",
"keytar",
"koffi",
"node-pty",
"protobufjs",
"puppeteer",
"sharp"
],
"allowedDeprecatedVersions": {
"crx": "5"
},
"supportedArchitectures": {
"cpu": [
"x64",
"arm64"
]
},
"overrides": {
"hono": ">=4.12.8",
"http-proxy-agent": ">=7.0.0",
"node-gyp": "^12.2.0",
"serialize-javascript": ">=7.0.0"
},
"ignoredBuiltDependencies": [
"leveldown"
]
},
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"zod"
],
"allowedVersions": {
"zod": "*",
"jest": "*",
"@azure/core-rest-pipeline": "*"
}
}
}