-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 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
{
"name": "cursor-api-monorepo",
"version": "1.0.0",
"private": true,
"description": "TypeScript library for the Cursor API",
"keywords": [
"cursor",
"ai",
"typescript",
"sdk",
"api",
"client"
],
"author": "xwartz",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xwartz/cursor-api"
},
"scripts": {
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm build && pnpm changeset publish",
"build": "pnpm -r build",
"build:verify": "pnpm run build && pnpm run verify:build",
"build:proto": "pnpm --filter=cursor-api build:proto",
"dev": "pnpm --filter=cursor-api dev",
"verify": "pnpm --filter=cursor-api verify",
"verify:build": "pnpm --filter=cursor-api verify:build",
"debug": "pnpm --filter=cursor-api debug",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"test:e2e": "pnpm -r test:e2e",
"test:unit": "pnpm -r test:unit",
"test:all": "pnpm run test:unit && pnpm run test:e2e",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"type-check": "pnpm -r type-check",
"ci": "pnpm run lint && pnpm run type-check && pnpm run test:coverage && pnpm run build:verify",
"prepare": "husky || true",
"get-token": "pnpm --filter=cursor-tool start -- token"
},
"devDependencies": {
"@bufbuild/protobuf": "^2.5.2",
"@changesets/cli": "^2.29.5",
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.0",
"protobufjs": "^7.4.0",
"semver": "^7.6.0",
"ts-jest": "^29.4.0",
"ts-proto": "^2.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"uuid": "^11.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}