-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.31 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
{
"name": "smol-cbor",
"version": "0.2.1",
"description": "A small, fast CBOR parser/serializer",
"keywords": [
"parser",
"serializer",
"binary",
"cbor"
],
"bugs": "https://github.com/cyyynthia/smol-cbor/issues",
"license": "BSD-3-Clause",
"author": "Cynthia Rey <cynthia@cynthia.dev>",
"repository": "github:cyyynthia/smol-cbor",
"funding": "https://github.com/sponsors/cyyynthia",
"files": [
"README.md",
"LICENSE",
"src",
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "vitest",
"update-gha": "pin-github-action .github/workflows"
},
"dependencies": {
"@atcute/uint8array": "^1.1.3"
},
"devDependencies": {
"@mitata/counters": "^0.0.8",
"@tsconfig/node-lts": "^24.0.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.1.0",
"mitata": "^1.0.34",
"pin-github-action": "^3.4.0",
"typescript": "7.0.1-rc",
"vitest": "^4.1.9"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.9.0",
"onFail": "error"
},
"runtime": {
"name": "node",
"version": "^26",
"onFail": "warn"
}
},
"engines": {
"node": ">= 24"
}
}