-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "littlejson",
"version": "0.0.2",
"description": "Fast and lightweight CLI to compress JSON files",
"module": "dist/index.js",
"type": "module",
"bin": {
"littlejson": "dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --minify --packages external",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Best-Codes/littlejson.git"
},
"keywords": [
"json",
"compression",
"minifier",
"minify",
"msgpack",
"bun"
],
"author": "The-Best-Codes",
"license": "MIT",
"bugs": {
"url": "https://github.com/The-Best-Codes/littlejson/issues"
},
"homepage": "https://github.com/The-Best-Codes/littlejson#readme",
"files": [
"dist",
"README.md",
"package.json",
"tsconfig.json",
"LICENSE"
],
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/bun": "^1.2.2",
"eslint": "^9.20.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.23.0"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0",
"commander": "^13.1.0",
"consola": "^3.4.0"
}
}