@inf-monkeys-tech/monkeys 1.0.2 → 1.0.4
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 +3 -1
- package/lib/esm/contracts/index.mjs +11129 -0
- package/lib/esm/contracts/index.mjs.map +1 -0
- package/lib/esm/index.mjs +12433 -0
- package/lib/esm/index.mjs.map +1 -0
- package/lib/esm/runtime/index.mjs +11810 -0
- package/lib/esm/runtime/index.mjs.map +1 -0
- package/lib/esm/schemas/index.mjs +11166 -0
- package/lib/esm/schemas/index.mjs.map +1 -0
- package/package.json +11 -3
package/package.json
CHANGED
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inf-monkeys-tech/monkeys",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Monkeys JS SDK",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./lib/index.d.ts",
|
|
10
|
+
"import": "./lib/esm/index.mjs",
|
|
10
11
|
"require": "./lib/index.js",
|
|
11
12
|
"default": "./lib/index.js"
|
|
12
13
|
},
|
|
13
14
|
"./contracts": {
|
|
14
15
|
"types": "./lib/contracts/index.d.ts",
|
|
16
|
+
"import": "./lib/esm/contracts/index.mjs",
|
|
15
17
|
"require": "./lib/contracts/index.js",
|
|
16
18
|
"default": "./lib/contracts/index.js"
|
|
17
19
|
},
|
|
18
20
|
"./schemas": {
|
|
19
21
|
"types": "./lib/schemas/index.d.ts",
|
|
22
|
+
"import": "./lib/esm/schemas/index.mjs",
|
|
20
23
|
"require": "./lib/schemas/index.js",
|
|
21
24
|
"default": "./lib/schemas/index.js"
|
|
22
25
|
},
|
|
23
26
|
"./runtime": {
|
|
24
27
|
"types": "./lib/runtime/index.d.ts",
|
|
28
|
+
"import": "./lib/esm/runtime/index.mjs",
|
|
25
29
|
"require": "./lib/runtime/index.js",
|
|
26
30
|
"default": "./lib/runtime/index.js"
|
|
27
31
|
},
|
|
@@ -41,7 +45,9 @@
|
|
|
41
45
|
"scripts": {
|
|
42
46
|
"clean": "node scripts/clean.cjs",
|
|
43
47
|
"typecheck": "tsc --noEmit",
|
|
44
|
-
"build": "yarn clean &&
|
|
48
|
+
"build": "yarn clean && yarn build:cjs && yarn build:esm && node scripts/generate-json-schemas.cjs",
|
|
49
|
+
"build:cjs": "tsc",
|
|
50
|
+
"build:esm": "tsup --config tsup.config.ts",
|
|
45
51
|
"test": "yarn build && node --test test/*.test.cjs",
|
|
46
52
|
"prepack": "yarn build",
|
|
47
53
|
"prepublishOnly": "yarn typecheck && yarn test",
|
|
@@ -51,11 +57,13 @@
|
|
|
51
57
|
"access": "public"
|
|
52
58
|
},
|
|
53
59
|
"devDependencies": {
|
|
60
|
+
"tsup": "^8.5.0",
|
|
54
61
|
"typescript": "^5.4.5"
|
|
55
62
|
},
|
|
56
63
|
"dependencies": {
|
|
57
64
|
"ajv": "^8.17.1",
|
|
58
65
|
"@io-orkes/conductor-javascript": "^2.1.0",
|
|
59
66
|
"zod": "4.1.9"
|
|
60
|
-
}
|
|
67
|
+
},
|
|
68
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
61
69
|
}
|