-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@redgoose/json-editor",
"description": "Easy editing JSON data",
"author": "redgoose <[email protected]>",
"version": "1.2.2",
"keywords": [ "json", "editor", "library", "tool" ],
"license": "MIT",
"main": "./lib/json-editor.js",
"types": "./lib/json-editor.d.ts",
"files": [ "lib" ],
"exports": {
".": {
"module": "./lib/json-editor.js",
"default": "./lib/json-editor.js",
"types": "./lib/json-editor.d.ts"
},
"./css": "./lib/json-editor.css",
"./umd": "./lib/json-editor.umd.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redgoose-dev/json-editor.git"
},
"bugs": {
"url": "https://github.com/redgoose-dev/json-editor/issues"
},
"homepage": "https://redgoose-dev.github.io/json-editor",
"type": "module",
"scripts": {
"dev": "vite --config vite.config/dev.js",
"docs": "vite --config vite.config/docs.js",
"prebuild": "rm -rf docs && rm -rf lib",
"build": "node vite.config/lib.js"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"cash-dom": "^8.1.5",
"feather-icons": "^4.29.2",
"sass": "^1.77.5",
"svelte": "^4.2.18",
"vite": "^5.3.1"
}
}