-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
61 lines (61 loc) · 2.53 KB
/
package.json
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
{
"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",
"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": "cd node_modules/.pnpm/node_modules/better-sqlite3 && pnpm exec prebuild-install && shx cp build/Release/better_sqlite3.node build/Release/better_sqlite3.n.node",
"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",
"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 dev",
"shell:test": "npx --prefix packages/shell playwright test simple.spec.ts",
"test": "pnpm run test:local && pnpm run test:live",
"test:live": "pnpm -r --no-sort --stream --workspace-concurrency=0 run test:live",
"test:local": "pnpm -r --no-sort --stream --workspace-concurrency=0 run test:local"
},
"devDependencies": {
"@fluidframework/build-tools": "^0.35.0-247707",
"@types/node": "^20.8.9",
"concurrently": "^8.2.2",
"markdown-link-check": "^3.12.2",
"prettier": "^3.2.5",
"shx": "^0.3.4"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"peerDependencyRules": {
"ignoreMissing": [
"eslint"
]
}
}