@dbx-tools/genie 0.6.39 → 0.6.41
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 +32 -25
package/package.json
CHANGED
|
@@ -5,10 +5,22 @@
|
|
|
5
5
|
"url": "git+https://github.com/reggie-db/dbx-tools.git",
|
|
6
6
|
"directory": "packages/node/genie"
|
|
7
7
|
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "projen build",
|
|
10
|
+
"compile": "projen compile",
|
|
11
|
+
"default": "projen default",
|
|
12
|
+
"package": "projen package",
|
|
13
|
+
"post-compile": "projen post-compile",
|
|
14
|
+
"pre-compile": "projen pre-compile",
|
|
15
|
+
"prepack": "projen prepack",
|
|
16
|
+
"test": "projen test",
|
|
17
|
+
"watch": "projen watch",
|
|
18
|
+
"projen": "projen"
|
|
19
|
+
},
|
|
8
20
|
"devDependencies": {
|
|
9
21
|
"@databricks/appkit": "^0.43.0",
|
|
22
|
+
"@types/bun": "^1.3.14",
|
|
10
23
|
"@types/node": "^24.6.0",
|
|
11
|
-
"tsx": "^4.23.0",
|
|
12
24
|
"typescript": "^5.9.3"
|
|
13
25
|
},
|
|
14
26
|
"peerDependencies": {
|
|
@@ -16,23 +28,29 @@
|
|
|
16
28
|
},
|
|
17
29
|
"dependencies": {
|
|
18
30
|
"@databricks/sdk-experimental": "^0.17.0",
|
|
19
|
-
"@dbx-tools/appkit": "0.6.
|
|
20
|
-
"@dbx-tools/shared-core": "0.6.
|
|
21
|
-
"@dbx-tools/shared-genie": "0.6.
|
|
31
|
+
"@dbx-tools/appkit": "0.6.41",
|
|
32
|
+
"@dbx-tools/shared-core": "0.6.41",
|
|
33
|
+
"@dbx-tools/shared-genie": "0.6.41"
|
|
22
34
|
},
|
|
23
|
-
"main": "
|
|
35
|
+
"main": "index.ts",
|
|
24
36
|
"license": "UNLICENSED",
|
|
25
37
|
"publishConfig": {
|
|
26
|
-
"access": "public"
|
|
38
|
+
"access": "public",
|
|
39
|
+
"main": "./lib/index.js",
|
|
40
|
+
"types": "./lib/index.d.ts",
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./lib/index.d.ts",
|
|
44
|
+
"default": "./lib/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./package.json": "./package.json"
|
|
47
|
+
}
|
|
27
48
|
},
|
|
28
|
-
"version": "0.6.
|
|
29
|
-
"types": "
|
|
49
|
+
"version": "0.6.41",
|
|
50
|
+
"types": "index.ts",
|
|
30
51
|
"type": "module",
|
|
31
52
|
"exports": {
|
|
32
|
-
".":
|
|
33
|
-
"types": "./lib/index.d.ts",
|
|
34
|
-
"default": "./lib/index.js"
|
|
35
|
-
},
|
|
53
|
+
".": "./index.ts",
|
|
36
54
|
"./package.json": "./package.json"
|
|
37
55
|
},
|
|
38
56
|
"files": [
|
|
@@ -50,16 +68,5 @@
|
|
|
50
68
|
"node"
|
|
51
69
|
]
|
|
52
70
|
},
|
|
53
|
-
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"
|
|
54
|
-
|
|
55
|
-
"build": "projen build",
|
|
56
|
-
"compile": "projen compile",
|
|
57
|
-
"default": "projen default",
|
|
58
|
-
"package": "projen package",
|
|
59
|
-
"post-compile": "projen post-compile",
|
|
60
|
-
"pre-compile": "projen pre-compile",
|
|
61
|
-
"test": "projen test",
|
|
62
|
-
"watch": "projen watch",
|
|
63
|
-
"projen": "projen"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
71
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"bunx projen\"."
|
|
72
|
+
}
|