-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.68 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.68 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
{
"name": "@iyulab/components",
"description": "web-components library based on lit-element made by iyulab",
"version": "1.0.6",
"keywords": [
"iyulab",
"components",
"web-components",
"lit",
"lit-element"
],
"license": "MIT",
"author": "iyulab",
"repository": {
"type": "git",
"url": "https://github.com/iyulab/node-components.git"
},
"files": [
"dist",
"skills",
"plugins/**/*.js",
"plugins/**/*.d.ts",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/*": "./dist/*",
"./react": "./dist/react/index.js",
"./react/*": "./dist/react/*",
"./styles/*": "./dist/styles/*",
"./plugins/*": "./plugins/*"
},
"scripts": {
"test": "vite --force",
"build:plugins": "tsc -p plugins/tsconfig.json",
"build": "eslint && vite build && npm run build:plugins"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"focus-trap": "^8.2.0",
"lit": "^3.3.3"
},
"peerDependencies": {
"@lit/react": ">=1.0.8",
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"@lit/react": { "optional": true },
"react": { "optional": true }
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.8.0",
"eslint": "^9.39.4",
"eslint-plugin-lit": "^2.3.1",
"glob": "^13.0.6",
"globals": "^17.6.0",
"react": "^19.2.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vite-plugin-dts": "^5.0.0",
"vite-plugin-static-copy": "^4.1.0"
}
}