-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
{
"name": "@dfinity/cbor",
"version": "0.2.3",
"description": "A small implementation of Concise Binary Object Representation (CBOR) in pure JavaScript.",
"author": "DFINITY Stiftung",
"license": "Apache-2.0",
"repository": "github:dfinity/cbor-js",
"bugs": "https://github.com/dfinity/cbor-js/issues",
"homepage": "https://github.com/dfinity/cbor-js#readme",
"keywords": [
"cbor",
"data-format",
"encoding",
"decoding",
"serialization",
"deserialization"
],
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8",
"scripts": {
"build": "vite build && tsc -p ./tsconfig.types.json",
"test": "vitest run --run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench --run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsdoc": "tsdoc --src=src/*,src/encode/*,src/decode/* && prettier --write README.md"
},
"files": [
"dist"
],
"main": "./dist/cbor.umd.js",
"module": "./dist/cbor.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"default": "./dist/index.d.ts"
},
"import": "./dist/cbor.mjs",
"require": "./dist/cbor.umd.js"
}
},
"devDependencies": {
"@types/node": "^24.10.0",
"borc": "^3.0.0",
"cbor-x": "^1.6.0",
"prettier": "^3.6.2",
"simple-cbor": "^0.4.1",
"tsdoc-markdown": "^1.4.1",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-checker": "^0.11.0",
"vitest": "4.0.8"
}
}