-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "pacopack",
"version": "1.0.3",
"description": "Pure JS binary schemaless and dictionary-driven serialization focused on performance, small payloads and JSON.stringify/parse easy replacement.",
"types": "./types/index.d.ts",
"browser": "./lib/pacopack.browser.js",
"main": "./lib/pacopack",
"exports": {
"import": "./lib/pacopack.mjs",
"require": "./lib/pacopack.js"
},
"files": [
"lib/",
"types/"
],
"scripts": {
"watch": "npx tsc --watch --inlineSourcemap",
"build": "npx rollup -c"
},
"author": "Llorx",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/llorx/pacopack"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-typescript": "^8.3.0",
"benchmark": "^2.1.4",
"rollup": "^2.67.3",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4"
}
}