-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.79 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
{
"name": "@bare-ts/lib",
"version": "0.4.0",
"description": "TypeScript library for BARE, a compact and simple binary-serialization format",
"keywords": [
"bare",
"binary format",
"decoder",
"encoder",
"serialization",
"schema"
],
"author": "Victorien Elvinger (victorien.elvinger.fr)",
"license": "MIT",
"homepage": "https://baremessages.org",
"repository": {
"type": "git",
"url": "git+https://github.com/bare-ts/lib.git"
},
"bugs": {
"url": "https://github.com/bare-ts/lib/issues"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"module": "./dist/index.js",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"#dev": {
"development": "./dist/env/dev.development.js",
"node": "./dist/env/dev.node.js",
"default": "./dist/env/dev.js"
}
},
"sideEffects": false,
"files": [
"dist/**/*.cjs",
"dist/**/*.d.cts",
"dist/**/*.d.ts",
"dist/**/*.js"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "sh ./scripts/build.sh",
"clean": "rm -rf dist coverage",
"coverage": "c8 --reporter=lcovonly npm test",
"format": "rome format --write .",
"prepare": "validate-commit-msg",
"prepublishOnly": "npm run clean && npm test",
"test": "sh ./scripts/test.sh",
"version": "sh ./scripts/version.sh"
},
"devDependencies": {
"esbuild": "0.18.4",
"oletus": "4.0.0",
"rome": "12.1.3",
"typescript": "5.1.3",
"validate-commit-message": "3.2.0"
}
}