-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·65 lines (65 loc) · 1.91 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
{
"name": "jjsontree.js",
"title": "JsonTree.js",
"description": "A lightweight JavaScript library that generates customizable tree views to better visualize, and edit, JSON data.",
"version": "4.7.0",
"homepage": "https://www.william-troup.com/jsontree-js/",
"author": {
"name": "Bunoon"
},
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/JsonTree.js"
},
"license": "MIT",
"keywords": [
"javascript",
"css",
"html5",
"JsonTree.js",
"visualize",
"array",
"array-viewer",
"base-16",
"component",
"interactive",
"interactive-json",
"json",
"json-component",
"json-display",
"json-inspector",
"json-tree",
"json-tree",
"json-view",
"json-viewer",
"react",
"react-component",
"react-json",
"theme",
"tree",
"tree-view",
"treeview"
],
"bugs": {
"url": "https://github.com/williamtroup/JsonTree.js/issues"
},
"main": "dist/jsontree.js",
"types": "dist/jsontree.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts && sass src/jsontree.js.scss dist/jsontree.js.css",
"build-minimized": "tsup --config tsup.build.min.config.ts && sass src/jsontree.js.scss dist/jsontree.js.min.css --style=compressed --no-source-map",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts",
"build-sass": "sass src/jsontree.js.scss dist/jsontree.js.css",
"build-sass-minimized": "sass src/jsontree.js.scss dist/jsontree.js.min.css --style=compressed --no-source-map"
},
"devDependencies": {
"@swc/core": "^1.9.3",
"sass": "^1.81.0",
"terser": "^5.36.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}