forked from CodebuffAI/codebuff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.67 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
{
"name": "@codebuff/sdk",
"private": false,
"version": "0.9.1",
"description": "Official SDK for Codebuff — AI coding agent & framework",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run scripts/build.ts",
"build:types": "bunx dts-bundle-generator -o dist/index.d.ts --no-check --export-referenced-types=false src/index.ts",
"build:verify": "bun run build && bun run smoke-test:dist && bun run test:cjs && bun run test:esm && bun run test:ripgrep && bun run test:tree-sitter-queries",
"test:typecheck-strict": "tsc --noEmit --strict dist/index.d.ts",
"smoke-test:dist": "bun run smoke-test-dist.ts",
"test:cjs": "cd test/cjs-compatibility && npm install --silent && npm run test:all",
"test:esm": "cd test/esm-compatibility && npm install --silent && npm run test:all",
"test:ripgrep": "cd test/ripgrep-bundling && npm install --silent && npm run test:all",
"test:tree-sitter-queries": "cd test/tree-sitter-queries && npm install --silent && npm run test:all",
"clean": "rm -rf dist",
"prepare-dist": "bun run scripts/publish.ts --dry-run",
"publish-sdk": "bun run scripts/publish.ts --public",
"publish-dry-run": "bun run build:verify && bun run scripts/publish.ts --dry-run",
"release": "bun run scripts/release.js",
"fetch-ripgrep": "bun scripts/fetch-ripgrep.ts",
"prepack": "bun run build",
"typecheck": "tsc --noEmit -p .",
"test": "bun test"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"codebuff",
"ai",
"code-editing",
"assistant",
"sdk",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodebuffAI/codebuff.git",
"directory": "sdk"
},
"homepage": "https://codebuff.com",
"bugs": {
"url": "https://github.com/CodebuffAI/codebuff/issues"
},
"dependencies": {
"@jitl/quickjs-wasmfile-release-sync": "0.31.0",
"@vscode/tree-sitter-wasm": "0.1.4",
"ai": "^5.0.0",
"diff": "8.0.2",
"ignore": "7.0.5",
"micromatch": "^4.0.8",
"web-tree-sitter": "0.25.6",
"ws": "^8.18.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/diff": "8.0.0",
"@types/micromatch": "^4.0.9",
"@types/node": "22",
"adm-zip": "^0.5.12",
"dts-bundle-generator": "^9.5.1",
"node-fetch": "^3.3.2"
},
"author": ""
}