-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.65 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
76
77
78
{
"name": "circ-msgpack",
"version": "1.0.1",
"description": "A minimalistic, extensible MessagePack encoder and decoder for the web, supporting circular references. Built upon tiny-msgpack.",
"main": "./app/dist/esm/circMsgpack.mjs",
"types": "./app/dist/esm/circMsgpack.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/circMsgpack.mjs",
"require": "./app/dist/cjs/circMsgpack.js"
},
"default": "./app/dist/esm/circMsgpack.mjs"
},
"scripts": {
"build": "del-cli app/dist && concurrently \"npm run buildESM\" \"npm run buildCJS\" --raw",
"buildESM": "tsc -p ./tsconfig.prod.esm.json && mjsify app/dist esm cjs",
"buildCJS": "tsc -p ./tsconfig.prod.cjs.json && npm run buildCJS2",
"buildCJS2": "rollup --config rollup.node.prod.config.mjs",
"dev": "npm run devWeb",
"devWeb": "concurrently \"rollup --config rollup.web.dev.config.mjs -w\" \"node devServer.mjs\" --raw ",
"devNode": "concurrently \"rollup --config rollup.node.dev.config.mjs -w\" \"rollup --config rollup.node.prod.cli.config.mjs\" \"wait-on repl/dist/crossPlatformSpecs-repl.js && echo && echo Run \\'npm run repl\\' to run repl.\" --raw",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/circMsgpack-repl.js",
"start": "npm run repl",
"buildTest": "rollup --config rollup.node.test.config.mjs",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/circMsgpack.git"
},
"keywords": [
"serialization",
"binary",
"msgpack",
"messagepack",
"json",
"circular",
"circ",
"recursive",
"object"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/circMsgpack/issues"
},
"homepage": "https://github.com/maximilianMairinger/circMsgpack#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.4",
"builtins": "^5.0.1",
"colorful-cli-logger": "^1.0.2",
"commander": "^10.0.1",
"concurrently": "^8.0.1",
"del-cli": "^5.0.0",
"detect-port": "^1.5.1",
"express": "^4.18.2",
"jest": "^26.6.3",
"mjsify": "^2.0.6",
"open": "^9.1.0",
"req-package-json": "^2.1.4",
"rollup": "^3.21.7",
"tslib": "2.0.0",
"typescript": "^5.0.4",
"wait-on": "^7.0.1",
"webpack-merge": "^5.0.9"
},
"dependencies": {
"circ-clone": "^2.7.9",
"key-index": "^1.5.0",
"tiny-msgpack": "^2.2.0"
}
}