Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
{
|
|
"name": "msgpackr",
|
|
"author": "Kris Zyp",
|
|
"version": "1.5.5",
|
|
"description": "Ultra-fast MessagePack implementation with extensions for records and structured cloning",
|
|
"license": "MIT",
|
|
"types": "./index.d.ts",
|
|
"main": "./dist/node.cjs",
|
|
"module": "./index.js",
|
|
"keywords": [
|
|
"MessagePack",
|
|
"msgpack",
|
|
"performance",
|
|
"structured",
|
|
"clone"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/kriszyp/msgpackr"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "node ./tests/benchmark.cjs",
|
|
"build": "rollup -c",
|
|
"dry-run": "npm publish --dry-run",
|
|
"prepare": "npm run build",
|
|
"test": "mocha tests/test**.*js -u tdd --experimental-json-modules"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"node": {
|
|
"require": "./dist/node.cjs",
|
|
"import": "./node-index.js"
|
|
},
|
|
"default": "./index.js"
|
|
},
|
|
"./pack": {
|
|
"node": {
|
|
"import": "./index.js",
|
|
"require": "./dist/node.cjs"
|
|
},
|
|
"default": "./pack.js"
|
|
},
|
|
"./unpack": {
|
|
"node": {
|
|
"import": "./index.js",
|
|
"require": "./dist/node.cjs"
|
|
},
|
|
"default": "./unpack.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"/dist",
|
|
"*.md",
|
|
"/*.js",
|
|
"/*.ts"
|
|
],
|
|
"optionalDependencies": {
|
|
"msgpackr-extract": "^1.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@types/node": "latest",
|
|
"async": "^3",
|
|
"chai": "^4.3.4",
|
|
"esm": "^3.2.25",
|
|
"mocha": "^8.1.3",
|
|
"rollup": "^1.20.3",
|
|
"rollup-plugin-babel-minify": "^9.0.0"
|
|
}
|
|
}
|
|
|