-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.74 KB
/
package.json
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
{
"name": "@planet-a/avsc-zstandard-codec",
"version": "0.0.0",
"description": "A `zstandard` codec for `avsc`",
"source": "src/index.ts",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.js",
"require": "./dist/module.js"
}
},
"scripts": {
"build": "rimraf dist && parcel build",
"test": "node --import tsx --test ./src/**/*.test.ts",
"test:watch": "node --import tsx --test --watch ./src/**/*.test.ts",
"test:coverage": "c8 node --import tsx --test ./src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/planet-a-ventures/avsc-zstandard-codec.git"
},
"author": "Planet A Ventures <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/planet-a-ventures/avsc-zstandard-codec/issues"
},
"files": [
"dist"
],
"keywords": [
"avcs",
"node",
"npm",
"avro",
"zstandard",
"zstd",
"codec",
"compression",
"snowflake"
],
"homepage": "https://github.com/planet-a-ventures/avsc-zstandard-codec#readme",
"dependencies": {
"@mongodb-js/zstd": "^1.2.1",
"buffer-crc32": "^1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/node": "^22.5.5",
"c8": "^10.1.2",
"memfs": "^4.11.1",
"parcel": "^2.12.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"avsc": "^5.7.7 || 6.0.0-alpha.14 || 6.0.0-alpha.15"
},
"engines": {
"node": ">=20"
}
}