@delta-base/core 0.0.2
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.d.ts +412 -0
- package/dist/index.js +9 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@delta-base/core",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Deltabase Core",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"obfuscate": "node scripts/obfuscate.js",
|
|
8
|
+
"build": "tsup --config tsup.config.ts",
|
|
9
|
+
"watch": "tsup --watch --config tsup.config.ts",
|
|
10
|
+
"cf-typegen": "wrangler types",
|
|
11
|
+
"test": "vitest run",
|
|
12
|
+
"test:coverage": "vitest --coverage",
|
|
13
|
+
"dev": "wrangler dev",
|
|
14
|
+
"prepublishOnly": "pnpm run build"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [],
|
|
17
|
+
"author": "Nibbio LLC",
|
|
18
|
+
"license": "LicenseRef-LICENSE",
|
|
19
|
+
"main": "./dist/index.js",
|
|
20
|
+
"module": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"files": ["dist"],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"source": "./src/index.ts",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"default": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@hono/zod-openapi": "^0.17.0",
|
|
33
|
+
"@scalar/hono-api-reference": "^0.5.174",
|
|
34
|
+
"hono": "^4.6.9",
|
|
35
|
+
"nanoid": "^5.0.9",
|
|
36
|
+
"uuid": "^11.0.2",
|
|
37
|
+
"zod": "^3.23.8"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@cloudflare/vitest-pool-workers": "^0.5.41",
|
|
41
|
+
"@cloudflare/workers-types": "^4.20241218.0",
|
|
42
|
+
"@vitest/coverage-istanbul": "^2.1.8",
|
|
43
|
+
"javascript-obfuscator": "^4.1.1",
|
|
44
|
+
"miniflare": "^3.20241218.0",
|
|
45
|
+
"tsup": "^8.3.6",
|
|
46
|
+
"typescript": "^5.5.2",
|
|
47
|
+
"vitest": "2.1.8",
|
|
48
|
+
"wrangler": "^3.109.2"
|
|
49
|
+
}
|
|
50
|
+
}
|