-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "paketto",
"version": "1.0.2-release",
"author": "Tufan Meriç Uyguner",
"license": "MIT",
"keywords": [
"serialization",
"deserialization",
"msgpack",
"serializer",
"deserializer",
"networking"
],
"description": "A fast and lightweight serializer and deserializer for Node.js and the browser.",
"browser": "dist/paketto.js",
"main": "build/cjs/index.js",
"module": "build/esm/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"browser": {
"default": "./dist/paketto.js",
"types": "./dist/paketto.d.ts"
},
"import": {
"default": "./build/esm/index.mjs",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./build/cjs/index.js",
"types": "./lib/index.d.ts"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"build",
"lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build:rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
"build:types": "dts-bundle-generator -o dist/paketto.d.ts src/index.ts",
"build": "tsc && yarn build:rollup && yarn build:types && yarn typedoc"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^16.4.6",
"dts-bundle-generator": "^8.0.1",
"jsdoc-to-markdown": "^8.0.0",
"rollup": "^3.20.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"typescript": "^5.0.3"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/tufcode/paketto.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "^2.5.0"
}
}