-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "@redgoose/json-editor",
"description": "Easy Editing JSON Data",
"author": "redgoose <scripter@me.com>",
"version": "1.2.3",
"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.2",
"cash-dom": "^8.1.5",
"feather-icons": "^4.29.2",
"sass": "^1.95.1",
"svelte": "^4.2.20",
"vite": "^5.4.21"
}
}