iceberg-javascript 0.8.1

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 ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "iceberg-javascript",
3
+ "version": "0.8.1",
4
+ "description": "A small, framework-agnostic JavaScript/TypeScript client for the Apache Iceberg REST Catalog",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ },
19
+ "default": "./dist/index.mjs"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
+ "docs": "typedoc src/index.ts",
29
+ "format": "prettier --write .",
30
+ "lint": "eslint .",
31
+ "type-check": "tsc --noEmit",
32
+ "test": "vitest run",
33
+ "test:watch": "vitest watch",
34
+ "test:integration": "bash scripts/test-integration.sh",
35
+ "test:integration:ci": "bash scripts/test-integration.sh --cleanup",
36
+ "test:compatibility": "bash test/compatibility/run-all.sh",
37
+ "check": "pnpm lint && pnpm type-check && pnpm test && pnpm build"
38
+ },
39
+ "keywords": [
40
+ "iceberg",
41
+ "apache-iceberg",
42
+ "rest-catalog",
43
+ "data-lake",
44
+ "catalog"
45
+ ],
46
+ "author": "mandarini",
47
+ "license": "MIT",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "https://github.com/supabase/iceberg-js"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/supabase/iceberg-js/issues"
54
+ },
55
+ "homepage": "https://github.com/supabase/iceberg-js#readme",
56
+ "publishConfig": {
57
+ "access": "public"
58
+ },
59
+ "devDependencies": {
60
+ "@eslint/js": "^9.39.1",
61
+ "@eslint/json": "^0.14.0",
62
+ "@eslint/markdown": "^7.5.1",
63
+ "@types/node": "^20.0.0",
64
+ "eslint": "^9.39.1",
65
+ "globals": "^16.5.0",
66
+ "jiti": "^2.6.1",
67
+ "prettier": "^3.6.2",
68
+ "tsup": "^8.5.1",
69
+ "typedoc": "^0.28.14",
70
+ "typescript": "^5.9.3",
71
+ "typescript-eslint": "^8.47.0",
72
+ "vitest": "^4.0.12"
73
+ },
74
+ "engines": {
75
+ "node": ">=20.0.0"
76
+ }
77
+ }