-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "alpinejs-component",
"version": "2.0.2",
"description": "Directive-based Alpine.js components with Shadow DOM encapsulation, slots, and cached template rendering",
"keywords": [
"alpinejs",
"alpinejs-component",
"shadow-dom",
"web-components",
"template-rendering",
"html-components",
"slots"
],
"author": "Mark Mead",
"license": "MIT",
"homepage": "https://github.com/markmead/alpinejs-component#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/markmead/alpinejs-component.git"
},
"bugs": {
"url": "https://github.com/markmead/alpinejs-component/issues"
},
"type": "module",
"main": "dist/component.esm.js",
"module": "dist/component.esm.js",
"unpkg": "dist/component.min.js",
"exports": {
".": {
"import": "./dist/component.esm.js",
"default": "./dist/component.esm.js"
}
},
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint . --fix",
"prebuild": "npm run lint"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0"
}
}