@levelcode/sdk 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/CHANGELOG.md +109 -0
- package/README.md +266 -0
- package/dist/index.cjs +41014 -0
- package/dist/index.cjs.map +342 -0
- package/dist/index.mjs +41023 -0
- package/dist/index.mjs.map +342 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@levelcode/sdk",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "Official SDK for LevelCode — AI coding agent & framework",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.cjs",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"CHANGELOG.md"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "bun run scripts/build.ts",
|
|
26
|
+
"clean": "rm -rf dist",
|
|
27
|
+
"typecheck": "tsc --noEmit -p .",
|
|
28
|
+
"test": "bun test",
|
|
29
|
+
"test:e2e": "bun test e2e/streaming/ e2e/workflows/ e2e/custom-agents/ e2e/features/",
|
|
30
|
+
"test:integration": "bun test e2e/integration/",
|
|
31
|
+
"verify": "bun run scripts/verify.ts",
|
|
32
|
+
"verify:skip-build": "bun run scripts/verify.ts --skip-build",
|
|
33
|
+
"smoke-test:dist": "bun run smoke-test-dist.ts",
|
|
34
|
+
"prepare-dist": "bun run scripts/publish.ts --dry-run",
|
|
35
|
+
"release": "bun run scripts/release.js",
|
|
36
|
+
"fetch-ripgrep": "bun scripts/fetch-ripgrep.ts",
|
|
37
|
+
"prepack": "bun run build",
|
|
38
|
+
"dev": "bun run build"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"levelcode",
|
|
45
|
+
"ai",
|
|
46
|
+
"code-editing",
|
|
47
|
+
"assistant",
|
|
48
|
+
"sdk",
|
|
49
|
+
"typescript"
|
|
50
|
+
],
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/yethikrishna/levelcode.git",
|
|
54
|
+
"directory": "sdk"
|
|
55
|
+
},
|
|
56
|
+
"homepage": "https://github.com/yethikrishna/levelcode",
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/yethikrishna/levelcode/issues"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@ai-sdk/anthropic": "2.0.50",
|
|
62
|
+
"@jitl/quickjs-wasmfile-release-sync": "0.31.0",
|
|
63
|
+
"@vscode/tree-sitter-wasm": "0.1.4",
|
|
64
|
+
"ai": "^5.0.52",
|
|
65
|
+
"diff": "8.0.3",
|
|
66
|
+
"gray-matter": "^4.0.3",
|
|
67
|
+
"ignore": "7.0.5",
|
|
68
|
+
"micromatch": "^4.0.8",
|
|
69
|
+
"web-tree-sitter": "0.25.6",
|
|
70
|
+
"ws": "^8.18.0",
|
|
71
|
+
"zod": "^4.2.1"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/diff": "8.0.0",
|
|
75
|
+
"@types/micromatch": "^4.0.9",
|
|
76
|
+
"adm-zip": "^0.5.12",
|
|
77
|
+
"dts-bundle-generator": "^9.5.1",
|
|
78
|
+
"node-fetch": "^3.3.2"
|
|
79
|
+
},
|
|
80
|
+
"author": {
|
|
81
|
+
"name": "Yethikrishna R",
|
|
82
|
+
"email": "yethikrishnarcvn7a@gmail.com"
|
|
83
|
+
}
|
|
84
|
+
}
|