-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "@alenaksu/json-viewer",
"version": "2.1.2",
"type": "module",
"main": "dist/json-viewer.js",
"module": "dist/json-viewer.js",
"customElements": "custom-elements.json",
"source": "src/index.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alenaksu/json-viewer.git"
},
"keywords": [
"json",
"viewer",
"webcomponents"
],
"author": "alenaksu",
"bugs": {
"url": "https://github.com/alenaksu/json-viewer/issues"
},
"files": [
"dist/*",
"src/*"
],
"scripts": {
"start": "vite",
"clean": "rimraf dist",
"build": "npm run clean && npm run analyze && tsup",
"docs": "vite build && touch docs/.nojekyll",
"analyze": "cem analyze --litelement",
"analyze:watch": "npm run analyze -- --watch",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.gitignore --write"
},
"dependencies": {
"lit": "^3.2.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"exports": {
".": "./dist/json-viewer.js",
"./src/*": "./src/*.js",
"./package.json": "./package.json",
"./json-viewer.js": "./dist/json-viewer.js",
"./JsonViewer.js": "./dist/JsonViewer.js"
},
"types": "./dist/index.d.ts"
}