-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "loop-cursor-monorepo",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "loop-cursor: 设定一个目标,Cursor 自动完成设计-实施-测试-验证的全闭环",
"type": "module",
"workspaces": [
"packages/loop-core",
"packages/adapter-cursor-sdk",
"packages/cli"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -b packages/loop-core packages/adapter-cursor-sdk packages/cli",
"test": "node --experimental-vm-modules --test tests/",
"test:coverage": "npx c8 --reporter=text --reporter=lcov --reporter=text-summary npx tsx --test tests/",
"test:coverage:single": "npx c8 --reporter=text --reporter=lcov npx tsx --test",
"lint": "tsc --noEmit -p tsconfig.json",
"format": "npx prettier --write 'packages/**/*.ts' 'tests/**/*.ts'",
"typecheck": "tsc -b packages/loop-core packages/adapter-cursor-sdk packages/cli",
"sdk:check": "node packages/adapter-cursor-sdk/src/sdk-check.ts",
"sdk:probe": "node packages/adapter-cursor-sdk/src/probe.ts",
"cli": "node packages/cli/src/index.ts"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^22.0.0"
}
}