@apostlejs/flows 0.0.3
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/LICENSE.md +21 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +3291 -0
- package/package.json +57 -0
package/package.json
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
{
|
2
|
+
"name": "@apostlejs/flows",
|
3
|
+
"license": "MIT",
|
4
|
+
"publishConfig": {
|
5
|
+
"access": "public"
|
6
|
+
},
|
7
|
+
"version": "0.0.3",
|
8
|
+
"type": "module",
|
9
|
+
"files": [
|
10
|
+
"dist"
|
11
|
+
],
|
12
|
+
"main": "./dist/index.cjs",
|
13
|
+
"types": "./dist/index.d.cts",
|
14
|
+
"exports": {
|
15
|
+
".": "./dist/index.cjs"
|
16
|
+
},
|
17
|
+
"typesVersions": {
|
18
|
+
"*": {
|
19
|
+
".": [
|
20
|
+
"./dist/index.d.cts"
|
21
|
+
]
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"devDependencies": {
|
25
|
+
"@types/node": "^22.9.1",
|
26
|
+
"terser": "^5.39.0",
|
27
|
+
"tsup": "8.4.0",
|
28
|
+
"tsx": "^4.19.3",
|
29
|
+
"typescript": "5.8.2",
|
30
|
+
"@apostlejs/config": "1.0.0"
|
31
|
+
},
|
32
|
+
"dependencies": {
|
33
|
+
"zod": "^3.24.3",
|
34
|
+
"zod-to-json-schema": "3.24.3",
|
35
|
+
"@apostlejs/whatsapp": "0.0.3"
|
36
|
+
},
|
37
|
+
"peerDependencies": {
|
38
|
+
"zod": "^3.24.3"
|
39
|
+
},
|
40
|
+
"scripts": {
|
41
|
+
"------------- toolchain -------------": "-------------",
|
42
|
+
"format": "biome format --write",
|
43
|
+
"lint": "biome lint --error-on-warnings",
|
44
|
+
"typecheck": "tsc --noEmit",
|
45
|
+
"------------- dev -------------": "-------------",
|
46
|
+
"dev": "pnpm tsup --env.mode dev",
|
47
|
+
"------------- build -------------": "-------------",
|
48
|
+
"build": "rm -rf dist && pnpm tsup --env.mode release",
|
49
|
+
"bundlesize": "pnpm build --metafile && npm pack --dry-run",
|
50
|
+
"bundlesize:dev": "pnpm tsup --metafile && npm pack --dry-run",
|
51
|
+
"------------- publishing -------------": "-------------",
|
52
|
+
"change": "changeset",
|
53
|
+
"bump": "pnpm changeset version",
|
54
|
+
"release": "pnpm typecheck && pnpm build && pnpm publish --no-git-checks",
|
55
|
+
"release:rc": "pnpm typecheck && pnpm build && pnpm version prerelease --preid=rc"
|
56
|
+
}
|
57
|
+
}
|