-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.24 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
{
"name": "json-html-kit",
"version": "0.4.2",
"description": "Render arbitrary JSON as safe, themed, human-friendly HTML tables.",
"keywords": [
"json",
"html",
"json-viewer",
"json-renderer",
"table",
"typescript",
"browser",
"developer-tools"
],
"type": "module",
"sideEffects": false,
"license": "MPL-2.0",
"author": "Recoveredd",
"repository": {
"type": "git",
"url": "git+https://github.com/Recoveredd/json-html-kit.git"
},
"bugs": {
"url": "https://github.com/Recoveredd/json-html-kit/issues"
},
"homepage": "https://github.com/Recoveredd/json-html-kit#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "tsc -p tsconfig.build.json",
"prepack": "npm run build:lib",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"happy-dom": "^20.9.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
}
}