@chaim-tools/chaim 0.1.0 → 0.1.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/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chaim-tools/chaim",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Schema-driven code generation tool for DynamoDB - Pure TypeScript CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,17 +16,6 @@
16
16
  "bin": {
17
17
  "chaim": "./dist/index.js"
18
18
  },
19
- "scripts": {
20
- "build": "npm run build:cli",
21
- "build:cli": "tsc",
22
- "setup": "./shared/scripts/setup.sh",
23
- "clean": "rm -rf dist",
24
- "test": "vitest",
25
- "lint": "eslint . --ext .ts",
26
- "lint:fix": "eslint . --ext .ts --fix",
27
- "dev": "ts-node src/index.ts",
28
- "start": "node dist/index.js"
29
- },
30
19
  "keywords": [
31
20
  "chaim",
32
21
  "cli",
@@ -47,11 +36,11 @@
47
36
  "homepage": "https://github.com/chaim-tools/chaim-cli#readme",
48
37
  "dependencies": {
49
38
  "@aws-sdk/client-sts": "^3.883.0",
50
- "@chaim-tools/chaim-bprint-spec": "workspace:^0.2.0",
51
- "@chaim-tools/client-java": "workspace:^0.1.0",
39
+ "@chaim-tools/client-java": "^0.1.0",
52
40
  "chalk": "^4.1.2",
53
41
  "commander": "^11.0.0",
54
- "ora": "^5.4.1"
42
+ "ora": "^5.4.1",
43
+ "@chaim-tools/chaim-bprint-spec": "0.2.1"
55
44
  },
56
45
  "devDependencies": {
57
46
  "@types/node": "^20.0.0",
@@ -61,5 +50,16 @@
61
50
  "ts-node": "^10.9.0",
62
51
  "typescript": "~5.0.0",
63
52
  "vitest": "^1.0.0"
53
+ },
54
+ "scripts": {
55
+ "build": "npm run build:cli",
56
+ "build:cli": "tsc",
57
+ "setup": "./shared/scripts/setup.sh",
58
+ "clean": "rm -rf dist",
59
+ "test": "vitest",
60
+ "lint": "eslint . --ext .ts",
61
+ "lint:fix": "eslint . --ext .ts --fix",
62
+ "dev": "ts-node src/index.ts",
63
+ "start": "node dist/index.js"
64
64
  }
65
- }
65
+ }
File without changes