-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.56 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.56 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@kit-p/json-kit",
"version": "2.0.0",
"description": "JSON Toolkit for (de)serialization | (un)minification | (de)compression",
"engines": {
"node": ">=18",
"pnpm": "^8.6.7"
},
"type": "module",
"main": "dist/index.umd.min.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.esm.min.mjs",
"keywords": [
"json",
"utility",
"serialization",
"minification",
"compression"
],
"exports": {
".": {
"require": "./dist/index.umd.min.cjs",
"import": "./dist/index.esm.min.mjs"
}
},
"scripts": {
"prepare": "husky install",
"test": "jest --coverage --filter \"./jest.filter.cjs\"",
"test:perf": "jest --filter \"./jest.perf.filter.cjs\"",
"lint": "concurrently \"pnpm:lint:*\"",
"lint:code": "eslint .",
"lint:style": "prettier --check .",
"lint:types": "tsc --noEmit",
"format": "eslint --fix --ext .ts . && prettier --write .",
"build": "concurrently \"pnpm:build:*(!docs)\"",
"build:types": "tsc -d --emitDeclarationOnly -p ./tsconfig.build.json",
"build:docs": "concurrently \"pnpm:build:docs:*\"",
"build:docs:site": "typedoc",
"build:docs:md": "typedoc --out docs --plugin typedoc-plugin-markdown",
"build:docs:wiki": "typedoc --out wiki --plugin typedoc-plugin-markdown --plugin typedoc-github-wiki-theme",
"build:js": "rollup -c rollup.config.mjs && pnpm run minify",
"minify": "concurrently \"pnpm:minify:*\"",
"minify:umd": "terser dist/index.umd.cjs --compress --mangle > dist/index.umd.min.cjs",
"minify:esm": "terser dist/index.esm.mjs --compress --mangle > dist/index.esm.min.mjs",
"pre-release": "pnpm run lint && pnpm run test && pnpm run build",
"semantic-release": "semantic-release"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kit-p/json-kit.git"
},
"author": "Kit PANG",
"license": "MIT",
"bugs": {
"url": "https://github.com/kit-p/json-kit/issues"
},
"homepage": "https://github.com/kit-p/json-kit",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@8.8.0",
"dependencies": {
"bson": "^4.7.2",
"js-base64": "^3.7.5",
"lodash.clonedeep": "^4.5.0",
"lz4js": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@jest/globals": "29.7.0",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "11.0.3",
"@swc/core": "1.3.107",
"@swc/jest": "0.2.31",
"@tsconfig/node-lts": "18.12.5",
"@types/jest": "29.5.14",
"@types/lodash.clonedeep": "4.5.9",
"@types/node": "20.19.35",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"concurrently": "8.2.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.8.1",
"renovate": "42.96.3",
"rollup": "3.30.0",
"semantic-release": "22.0.12",
"terser": "5.44.1",
"ts-jest": "29.4.6",
"tslib": "2.6.3",
"typedoc": "0.27.2",
"typedoc-github-wiki-theme": "1.1.0",
"typedoc-plugin-markdown": "3.16.0",
"typescript": "5.2.2"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"marked-terminal@5>marked": "5"
}
}
}
}