-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
68 lines (68 loc) · 1.48 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
{
"name": "msgpackr",
"author": "Kris Zyp",
"version": "1.3.0",
"description": "Ultra-fast MessagePack implementation with extensions for records and structured cloning",
"license": "MIT",
"types": "./index.d.ts",
"keywords": [
"MessagePack",
"msgpack",
"performance",
"structured",
"clone"
],
"repository": {
"type": "git",
"url": "http://github.com/kriszyp/msgpackr"
},
"scripts": {
"benchmark": "node ./tests/benchmark.js",
"build": "rollup -c",
"prepare": "npm run build",
"test": "./node_modules/.bin/mocha --experimental-json-modules tests/test.js -u tdd"
},
"type": "module",
"main": "./dist/node.cjs",
"exports": {
".": {
"node": {
"require": "./dist/node.cjs",
"import": "./node.js"
},
"default": {
"import": "./index.js"
}
},
"./pack": {
"node": {
"import": "./index.js",
"require": "./dist/node.cjs"
},
"default": {
"import": "./pack.js"
}
},
"./unpack": {
"node": {
"import": "./index.js",
"require": "./dist/node.cjs"
},
"default": {
"import": "./unpack.js"
}
}
},
"optionalDependencies": {
"msgpackr-extract": "^1.0.9"
},
"devDependencies": {
"@types/node": "latest",
"chai": "^4",
"esm": "^3.2.25",
"mocha": "^8.1.3",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0",
"@rollup/plugin-json": "^4.1.0"
}
}