-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.84 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
73
74
75
76
77
{
"name": "@bare-ts/tools",
"version": "0.16.0",
"description": "Compiler for Binary Application Record Encoding (BARE) schemas",
"keywords": [
"bare",
"binary format",
"decoder",
"cli",
"compiler",
"encoder",
"serialization",
"schema"
],
"author": "Victorien Elvinger (https://victorien.elvinger.fr)",
"license": "MIT",
"homepage": "https://baremessages.org",
"repository": {
"type": "git",
"url": "git+https://github.com/bare-ts/bare.git"
},
"bugs": {
"url": "https://github.com/bare-ts/bare/issues"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"bin": {
"bare": "dist/bin/cli.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"module": "./dist/index.js",
"module-sync": "./dist/index.js",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist/**/*.cjs",
"dist/**/*.d.cts",
"dist/**/*.d.ts",
"dist/**/*.js",
"!dist/**/*.test.js",
"!dist/**/*.spec.js"
],
"scripts": {
"build": "sh ./scripts/build.sh",
"clean": "rm -rf dist coverage",
"coverage": "c8 --reporter=lcovonly npm test",
"format": "biome format --write .",
"lint": "biome lint .",
"prepare": "validate-commit-msg",
"prepublishOnly": "npm run clean && npm test",
"test": "sh ./scripts/test.sh",
"version": "sh ./scripts/version.sh"
},
"devDependencies": {
"@bare-ts/lib": "~0.4.0",
"@biomejs/biome": "1.9.4",
"@types/node": "20.0.0",
"esbuild": "0.24.0",
"typescript": "5.6.3",
"validate-commit-message": "3.2.0"
},
"peerDependencies": {
"@bare-ts/lib": ">=0.3.0 <=0.4.0"
},
"packageManager": "[email protected]"
}