-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "jsonc.min",
"version": "1.1.0",
"description": "✨ Faster and safer JSON and JSONC minify, parse and stringify for JavaScript (Browser compatible) — 2.3KB.",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/jsonc.min.git"
},
"bugs": {
"url": "https://github.com/wellwelwel/jsonc.min/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wellwelwel"
},
"files": [
"browser",
"lib"
],
"engines": {
"node": ">=4.0.0",
"bun": ">=1.0.0",
"deno": ">=1.30.0"
},
"scripts": {
"prebuild": "rm -rf ./browser ./lib",
"build:browser": "tsx tools/browserfy.ts",
"build": "tsc && npm run build:browser",
"test:node": "poku --node -p",
"test:bun": "poku --bun -p",
"test:deno": "poku --deno -p",
"lint": "npx @biomejs/biome lint && prettier --check .",
"lint:fix": "npx @biomejs/biome lint --write && prettier --write .github/workflows/*.yml .",
"update": "pu minor && npm i && npm audit fix",
"postupdate": "npm run lint:fix",
"size": "ls -lh lib/index.js | awk '{print $5}'"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.5.0",
"esbuild": "^0.23.1",
"happy-dom": "^15.0.0",
"packages-update": "^2.0.0",
"poku": "^2.5.0",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"keywords": [
"json",
"jsonc",
"minify",
"minifier",
"parse",
"parser",
"stringify",
"jsonc-to-json",
"node",
"nodejs",
"bun",
"deno",
"typescript",
"browser"
]
}