@mkrz/cocon 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@mkrz/cocon",
3
+ "version": "0.0.1",
4
+ "description": "Clone npm package source code for agentic coding tool context",
5
+ "license": "MIT",
6
+ "author": "mkreuzmayr",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/mkreuzmayr/cocon.git"
10
+ },
11
+ "bin": {
12
+ "cocon": "dist/cocon.mjs",
13
+ "cocon-mcp": "dist/cocon-mcp.mjs"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "type": "module",
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "scripts": {
23
+ "prebuild": "rm -rf dist && mkdir -p dist",
24
+ "build": "bun run build:cli && bun run build:mcp",
25
+ "build:cli": "bun build src/index.ts --target=node --outfile dist/cocon.mjs --format esm",
26
+ "build:mcp": "bun build src/mcp-server.ts --target=node --outfile dist/cocon-mcp.mjs --format esm",
27
+ "compile": "bun run compile:cli && bun run compile:mcp",
28
+ "compile:cli": "bun build --compile src/index.ts --outfile dist/cocon",
29
+ "compile:mcp": "bun build --compile src/mcp-server.ts --outfile dist/cocon-mcp",
30
+ "dev": "bun run ./src/index.ts",
31
+ "mcp": "bun run ./src/mcp-server.ts",
32
+ "lint": "oxlint .",
33
+ "lint:fix": "oxlint . --fix",
34
+ "fmt": "oxfmt",
35
+ "fmt:check": "oxfmt --check"
36
+ },
37
+ "devDependencies": {
38
+ "@modelcontextprotocol/sdk": "1.27.1",
39
+ "@types/bun": "1.3.9",
40
+ "@types/react": "19.2.14",
41
+ "arkregex": "0.0.5",
42
+ "commander": "14.0.3",
43
+ "ink": "6.8.0",
44
+ "oxfmt": "0.35.0",
45
+ "oxlint": "1.50.0",
46
+ "react": "19.2.4",
47
+ "react-devtools-core": "7.0.1",
48
+ "tar": "7.5.9",
49
+ "typescript": "5.9.3",
50
+ "zod": "4.3.6",
51
+ "zustand": "5.0.11"
52
+ },
53
+ "engines": {
54
+ "node": ">=20.0.0"
55
+ }
56
+ }