-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 921 Bytes
/
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
{
"name": "lit-functions",
"version": "1.0.3",
"description": "Functional components for lit-elements.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/icsaba/lit-functions",
"repository": "https://github.com/icsaba/lit-functions.git",
"files": [
"dist"
],
"scripts": {
"test:unit": "vitest --environment=jsdom",
"test": "vitest run --environment=jsdom",
"build": "tsc"
},
"peerDependencies": {
"lit": "^3.1.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@open-wc/testing": "^4.0.0",
"husky": "^9.1.6",
"jsdom": "^24.1.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"keywords": [
"webcomponents",
"lit-element",
"lit-hooks",
"lit-functions",
"lit function components"
]
}