-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "@htmlplusplus/code-block",
"description": "Webcomponent code-block following open-wc recommendations",
"license": "MIT",
"author": "Zach Dodson",
"version": "1.0.3",
"type": "module",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"exports": {
".": "./dist/src/index.js",
"./code-block.js": "./dist/src/code-block.js"
},
"scripts": {
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"web-dev-server\"",
"build": "tsc && npm run analyze -- --exclude dist",
"prepublish": "tsc && npm run analyze -- --exclude dist"
},
"dependencies": {
"@types/minimist": "^1.2.5",
"lit": "^3.1.4",
"normalize-package-data": "^7.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@types/normalize-package-data": "^2.4.4",
"@web/dev-server": "^0.4.6",
"concurrently": "^8.2.2",
"tslib": "^2.8.1",
"typescript": "^5.5.3"
},
"customElements": "custom-elements.json",
"types": "./dist/src/index.d.ts"
}