-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.3 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "lit-feature",
"version": "1.0.4",
"description": "Core functionalities and components for integrating with the Lit framework.",
"main": "index.cjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
},
"./decorators": {
"types": "./decorators/index.d.ts",
"import": "./decorators/index.js",
"require": "./decorators/index.cjs"
},
"./lit-core": {
"types": "./lit-core.d.ts",
"import": "./lit-core.js",
"require": "./lit-core.cjs"
},
"./lit-feature": {
"types": "./lit-feature.d.ts",
"import": "./lit-feature.js",
"require": "./lit-feature.cjs"
},
"./types": {
"types": "./types/index.d.ts",
"import": "./types/index.js",
"require": "./types/index.cjs"
},
"./types/feature-types": {
"types": "./types/feature-types.d.ts",
"import": "./types/feature-types.js",
"require": "./types/feature-types.cjs"
}
},
"files": [
"*.js",
"*.cjs",
"*.d.ts",
"*.map",
"decorators/",
"types/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"release": "semantic-release",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@lit/reactive-element": "^2.0.0",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/lodash.merge": "^4.6.9",
"lit": "^3.0.0",
"lit-html": "^3.0.0",
"semantic-release": "^24.0.0",
"tsup": "^8.0.1",
"typescript": "^4.0.0"
},
"peerDependencies": {
"@lit/reactive-element": "^2.0.0",
"lit": "^3.0.0",
"lit-html": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StephenRiosDev/lit-feature.git"
},
"keywords": [
"lit",
"lit-element",
"lit-feature",
"web-components",
"features"
],
"author": "Stephen Rios",
"license": "MIT",
"bugs": {
"url": "https://github.com/StephenRiosDev/lit-feature/issues"
},
"homepage": "https://stephenriosdev.github.io/LitFeature"
}