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