-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.27 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
{
"name": "cc-peer",
"version": "1.3.4",
"description": "Communicate with local Claude Code instances over their native cross-session peer messaging: send and receive messages, register as a named discoverable peer, receipts, idle subscriptions, and a REST facade via `npx cc-peer`.",
"type": "module",
"license": "MIT",
"author": "Joseph Mearman <joseph@mearman.co.uk>",
"repository": {
"type": "git",
"url": "git+https://github.com/ExaDev/cc-peer.git"
},
"homepage": "https://github.com/ExaDev/cc-peer#readme",
"bugs": {
"url": "https://github.com/ExaDev/cc-peer/issues"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@12.4.1+sha512.2e81e399d73fe8390dab25e06aa788ab7a5908248d2f5a370f82b481147a6a7a367bf8048f9a6fdb6460f21a66f0542dedb8b94ca2c8723596741920b1656d4c",
"bin": {
"cc-peer": "./dist/bin/cc-peer.mjs"
},
"exports": {
".": {
"import": {
"types": "./dist/cc-peer.d.mts",
"default": "./dist/cc-peer.mjs"
},
"require": {
"types": "./dist/cc-peer.d.cts",
"default": "./dist/cc-peer.cjs"
}
},
"./schemas/*.schema.json": "./schemas/*.schema.json",
"./package.json": "./package.json"
},
"main": "./dist/cc-peer.cjs",
"types": "./dist/cc-peer.d.mts",
"files": [
"dist",
"schemas",
"docs"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"build": "turbo run _build",
"_build": "tsdown && tsx scripts/generate-json-schema.ts",
"lint": "turbo run _lint",
"_lint": "eslint . --cache --fix",
"typecheck": "turbo run _typecheck",
"_typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:mutation": "stryker run stryker.config.ts",
"prepublishOnly": "pnpm lint && pnpm typecheck && pnpm test:coverage && pnpm build && publint && attw --pack",
"prepare": "husky",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"zod": "4.5.4"
},
"devDependencies": {
"@anthropic-ai/claude-code": "2.1.261",
"@arethetypeswrong/cli": "0.18.5",
"@commitlint/config-conventional": "21.2.2",
"@commitlint/types": "21.2.0",
"@exadev/eslint-config": "2.12.1",
"@semantic-release/changelog": "7.0.0",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "11.0.1",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@stryker-mutator/core": "10.0.0",
"@stryker-mutator/vitest-runner": "10.0.0",
"@types/node": "26.4.1",
"@vitest/coverage-v8": "4.1.11",
"commitlint": "21.2.2",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.12.0",
"husky": "9.1.7",
"jiti": "2.7.0",
"lint-staged": "17.5.0",
"prettier": "3.9.6",
"publint": "0.3.24",
"semantic-release": "25.0.9",
"tsdown": "0.23.0",
"tsx": "4.23.13",
"turbo": "2.10.12",
"typescript": "6.0.3",
"vitest": "4.1.11"
}
}