-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.06 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
{
"name": "pbf-ts",
"version": "1.2.0",
"description": "A low-level, fast, ultra-lightweight typescript library for decoding and encoding protocol buffers.",
"type": "module",
"keywords": [
"typescript",
"protocol-buffers",
"encoding",
"decoding",
"pbf",
"protobuf",
"library"
],
"exports": {
".": "./dist/index.js"
},
"directories": {
"lib": "dist"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typescript": {
"main": "src/index.ts"
},
"files": [
"dist"
],
"scripts": {
"lint+build+test+docs": "bun run lint && bun run build && bun run test && bun run docs",
"lint": "oxlint src tests",
"lint:fix": "bun run lint -- --fix",
"fmt": "bunx oxfmt src tests tools benchmarks --check",
"fmt:fix": "bunx oxfmt -- --write",
"format": "bunx oxfmt:fix && bun run lint:fix",
"build": "rm -rf dist && mkdir dist && rm -f -- tsconfig.tsbuildinfo && tsc",
"cleanCoverage": "rm -rf coverage && mkdir coverage",
"types:bundle": "bun run types:build && node scripts/types.mjs",
"prepublishOnly": "bun run lint+build+test+docs",
"package-check": "package-check",
"test:dev": "bun test --watch --coverage",
"test": "FORCE_POLYFILL=true bun test",
"test:fast": "FAST_TESTS_ONLY=true bun test",
"test:coverage": "bun run test --coverage",
"docs": "bunx typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Open-S2/s2-tools.git"
},
"author": "Craig OConnor",
"license": "See LICENSE file.",
"bugs": {
"url": "https://github.com/Open-S2/s2-tools/issues"
},
"homepage": "https://github.com/Open-S2/s2-tools#readme",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/bun": "^1.3.8",
"@types/node": "^25.2.2",
"coveralls": "^3.1.1",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-tsdoc": "^0.5.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"typedoc": "^0.28.16",
"typedoc-plugin-coverage": "^4.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
}
}