-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.62 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
{
"name": "@the-minimal/protocol",
"type": "module",
"version": "0.7.0",
"license": "MIT",
"author": "Miroslav Vršecký <[email protected]>",
"description": "Minimal and modular binary schema-full protocol for TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/the-minimal/protocol.git",
"directory": "src"
},
"keywords": [
"json",
"protocol",
"protocol-buffers",
"bson",
"jsonb",
"binary-protocol",
"binary-json",
"avro",
"javascript",
"typescript"
],
"homepage": "https://github.com/the-minimal/protocol",
"bugs": {
"url": "https://github.com/the-minimal/protocol/issues"
},
"scripts": {
"prepublishOnly": "bun run check && bun run build && bun run test",
"release": "release-it",
"build": "tsup && bun run scripts/stats.ts",
"check": "yarn biome check --apply ./",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@fast-check/vitest": "0.1.1",
"@vitest/coverage-v8": "1.6.0",
"bun": "1.1.10",
"release-it": "17.2.1",
"terser": "5.31.0",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"peerDependencies": {
"typescript": "5.4.5"
}
}