-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 800 Bytes
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
{
"name": "@axolo/json-editor",
"version": "0.3.0",
"description": "A JSON Editor Web Component",
"license": "MIT",
"author": "axolo",
"type": "module",
"module": "dist/json-editor.es.js",
"main": "dist/json-editor.umd.js",
"exports": {
".": {
"import": "./dist/json-editor.es.js",
"require": "./dist/json-editor.umd.js"
}
},
"files": [
"dist"
],
"keywords": [
"json-editor",
"json editor",
"json"
],
"homepage": "https://github.com/axolo/json-editor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/axolo/json-editor.git"
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"sass-embedded": "^1.100.0",
"terser": "^5.48.0",
"vite": "^8.0.16"
}
}