-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "icechunk-js",
"version": "0.3.2",
"description": "Read-only JavaScript/TypeScript reader for Icechunk repositories",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"typecheck": "tsc --noEmit",
"pretest": "node scripts/sync.mjs --if-missing fixtures",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "node scripts/sync.mjs --if-missing fixtures flatbuffers",
"sync:fixtures": "node scripts/sync.mjs fixtures",
"sync:fbs": "node scripts/sync.mjs flatbuffers",
"generate:fbs": "node scripts/generate-fbs.mjs",
"check:fbs": "node scripts/check-fbs.mjs"
},
"keywords": [
"icechunk",
"zarr",
"zarrita"
],
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^3.1.3",
"flatbuffers": "^25.9.23",
"fzstd": "^0.1.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"prettier": "^3.8.0",
"tsup": "^8.5.0",
"tsx": "^4.19.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0",
"zarrita": "^0.7.0"
},
"peerDependencies": {
"zarrita": "^0.5.0 || ^0.6.0 || ^0.7.0"
},
"peerDependenciesMeta": {
"zarrita": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/EarthyScience/icechunk-js.git"
},
"homepage": "https://github.com/EarthyScience/icechunk-js#readme",
"bugs": {
"url": "https://github.com/EarthyScience/icechunk-js/issues"
}
}