-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.63 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cem-plugin-better-lit-types",
"version": "0.2.1",
"description": "Updates CEM definitions with Typescript Schema",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./storybook": {
"import": "./dist/storybook.js"
},
"./plugin": {
"import": "./dist/plugin.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"storybook": [
"dist/storybook.d.ts"
],
"plugin": [
"dist/plugin.d.ts"
]
}
},
"files": [
"dist/**/*"
],
"scripts": {
"analyze": "custom-elements-manifest analyze",
"build": "tsc --declaration",
"semantic-release": "semantic-release",
"release": "release-it"
},
"keywords": [
"custom-element-manifest",
"plugin",
"web-components",
"lit",
"storybook",
"analyzer",
"typescript"
],
"author": "Uscreen <[email protected]> (https://www.uscreen.tv)",
"homepage": "https://github.com/Uscreen-video/cem-plugin-better-lit-types#readme",
"license": "ISC",
"optionalDependencies": {
"@open-wc/lit-helpers": "0.5.1",
"lit": "^2.6.1",
"typescript": "^4.9.4",
"typescript-json-schema": "^0.55.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.8",
"@types/node": "^18.11.18",
"lit-html": "^2.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Uscreen-video/cem-plugin-better-lit-types.git"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}"
},
"github": {
"release": true
}
}
}