@codemieai/cdk 0.1.270
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/README.md +2856 -0
- package/dist/cli/index.js +3482 -0
- package/dist/index.d.ts +584 -0
- package/dist/index.js +3247 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codemieai/cdk",
|
|
3
|
+
"version": "0.1.270",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Infrastructure as Code solution for managing Codemie AI assistants, datasources, and workflows through declarative YAML configuration",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"codemie": "./dist/cli/index.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"biome": "biome lint --write ./src",
|
|
28
|
+
"biome:check": "biome lint ./src",
|
|
29
|
+
"build": "tsup",
|
|
30
|
+
"clean": "rm -rf dist",
|
|
31
|
+
"format": "biome format --write ./src",
|
|
32
|
+
"format:check": "biome format ./src",
|
|
33
|
+
"lint": "npm-run-all types:check biome:check format:check",
|
|
34
|
+
"lint:check": "npm-run-all types:check biome:check",
|
|
35
|
+
"lint:fix": "npm-run-all types:check eslint format",
|
|
36
|
+
"test": "jest --silent --passWithNoTests",
|
|
37
|
+
"test:ci": "jest --silent --coverage --ci",
|
|
38
|
+
"test:coverage": "jest --silent --coverage",
|
|
39
|
+
"test:watch": "jest --watch",
|
|
40
|
+
"types:check": "tsc --noEmit"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@commander-js/extra-typings": "^14.0.0",
|
|
44
|
+
"codemie-sdk": "^0.1.245",
|
|
45
|
+
"dotenv": "^17.2.3",
|
|
46
|
+
"p-limit": "^7.2.0",
|
|
47
|
+
"yaml": "^2.8.1",
|
|
48
|
+
"zod": "4.1.13"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@biomejs/biome": "2.3.8",
|
|
52
|
+
"@swc/core": "^1.15.2",
|
|
53
|
+
"@swc/jest": "^0.2.39",
|
|
54
|
+
"@types/jest": "^30.0.0",
|
|
55
|
+
"@types/node": "^20.10.0",
|
|
56
|
+
"jest": "^30.2.0",
|
|
57
|
+
"npm-run-all2": "8.0.4",
|
|
58
|
+
"ts-node": "^10.9.2",
|
|
59
|
+
"tsup": "^8.0.2",
|
|
60
|
+
"tsx": "^4.7.0",
|
|
61
|
+
"typescript": "^5.3.3"
|
|
62
|
+
}
|
|
63
|
+
}
|