-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.64 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
{
"name": "cursor-pair",
"version": "0.1.0",
"description": "A private local channel between a CLI agent (Claude Code, Codex) and your Cursor agent — edits arrive as native Cursor diffs you accept or decline.",
"keywords": [
"cursor",
"claude",
"claude-code",
"codex",
"agent",
"agents",
"pair-programming",
"diff",
"code-review",
"channel",
"cli"
],
"license": "MIT",
"author": {
"name": "Sergei Dmitriev",
"url": "https://1gr14.dev"
},
"homepage": "https://github.com/1gr14/cursor-pair#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/1gr14/cursor-pair.git"
},
"bugs": {
"url": "https://github.com/1gr14/cursor-pair/issues"
},
"funding": "https://1gr14.dev/support",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"cursor-pair": "./dist/cli.js"
},
"typesVersions": {
"*": {
"": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsc-watch --preserveWatchOutput --project tsconfig.build.json",
"dev:npm": "tsc-watch --preserveWatchOutput --project tsconfig.build.json --onSuccess 'bun run pack:dist'",
"build": "tsdown",
"test": "bun test ./src",
"test:us": "bun test ./src --update-snapshots",
"test:watch": "bun test --watch",
"test:coverage": "bun test ./src --coverage",
"smoke": "node scripts/smoke.mjs",
"check:package": "publint && attw --pack . --profile esm-only",
"lint": "bun run lint:fix .",
"lint:base": "eslint --cache --cache-location node_modules/.cache/eslint/.eslintcache",
"lint:fix": "bun run lint:base --fix",
"format": "bun run format:fix .",
"format:base": "prettier --cache --cache-location node_modules/.cache/prettier/.prettiercache --ignore-path .gitignore --ignore-path .prettierignore",
"format:fix": "bun run format:base --write",
"types:build": "node node_modules/typescript/bin/tsc --noEmit --project tsconfig.build.json",
"types": "node node_modules/typescript-7/bin/tsc --noEmit",
"types:6": "node node_modules/typescript/bin/tsc --noEmit",
"release": "bun run scripts/release.ts",
"publish:packages": "bun run scripts/publish.ts",
"check:channel": "bun run scripts/check-channel.ts",
"pack:dry": "npm pack --dry-run",
"pack:dist": "mkdir -p dist-npm && npm pack --pack-destination dist-npm --silent && cd dist-npm && tar -xzf *.tgz && cp -r package/* . && rm -rf package && rm *.tgz",
"pack:dist:hard": "rimraf dist-npm && bun run pack:dist",
"prepare": "husky || true",
"clean": "rimraf dist && rimraf dist-npm && rimraf node_modules/.cache"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/bun": "^1.3.14",
"@types/node": "^20.0.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"prettier-plugin-jsdoc": "^1.8.1",
"publint": "^0.3.21",
"rimraf": "^6.1.3",
"tsc-watch": "^7.2.0",
"tsdown": "^0.22.1",
"typescript": "^6.0.0",
"typescript-7": "npm:typescript@7.0.1-rc",
"typescript-eslint": "^8.60.1"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}