@zapier/kitcore 0.0.0 → 0.4.0

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 CHANGED
@@ -1,11 +1,59 @@
1
1
  {
2
2
  "name": "@zapier/kitcore",
3
- "version": "0.0.0",
4
- "description": "Placeholder release to reserve the @zapier/kitcore name.",
3
+ "version": "0.4.0",
4
+ "description": "Plugin framework for building SDKs.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://gitlab.com/zapier/zapier-sdk/zapier-sdk.git",
8
+ "directory": "packages/kitcore"
9
+ },
10
+ "main": "dist/index.cjs",
11
+ "module": "dist/index.mjs",
12
+ "types": "dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "source": "./src/index.ts",
16
+ "require": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.cjs"
19
+ },
20
+ "import": {
21
+ "types": "./dist/index.d.mts",
22
+ "default": "./dist/index.mjs"
23
+ }
24
+ }
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "CHANGELOG.md"
30
+ ],
31
+ "keywords": [
32
+ "sdk",
33
+ "framework",
34
+ "plugin"
35
+ ],
5
36
  "license": "SEE LICENSE IN LICENSE",
6
- "type": "module",
7
- "main": "index.mjs",
8
37
  "publishConfig": {
9
38
  "access": "public"
39
+ },
40
+ "peerDependencies": {
41
+ "zod": "^4.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "^24.0.1",
45
+ "tsup": "^8.5.0",
46
+ "typescript": "^5.8.3",
47
+ "vitest": "^4.1.4",
48
+ "zod": "4.3.6"
49
+ },
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "clean": "rm -rf dist",
53
+ "rebuild": "pnpm clean && pnpm build",
54
+ "typecheck": "tsc --project tsconfig.build.json --noEmit",
55
+ "test": "vitest run",
56
+ "test:watch": "vitest",
57
+ "bench": "vitest bench --run"
10
58
  }
11
- }
59
+ }
package/index.mjs DELETED
@@ -1,3 +0,0 @@
1
- // Placeholder seed for @zapier/kitcore.
2
- // The real package is published from the zapier-sdk monorepo.
3
- export {};