-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.33 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
{
"name": "alpine-define-component",
"version": "1.2.0",
"description": "A structured component system for Alpine.js with parts/slots support",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"playground": "vite playground",
"playground:build": "vite build playground",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"alpinejs",
"alpine",
"components",
"alpine-components",
"alpine-plugin"
],
"author": "Eldo Magan",
"license": "MIT",
"sideEffects": false,
"peerDependencies": {
"@types/alpinejs": "^3.13.0",
"alpinejs": "^3.0.0"
},
"peerDependenciesMeta": {
"@types/alpinejs": {
"optional": true
}
},
"devDependencies": {
"@alpinejs/morph": "^3.15.11",
"@types/alpinejs": "^3.13.11",
"@types/alpinejs__morph": "^3.13.5",
"@vitest/coverage-v8": "^4.1.4",
"alpinejs": "^3.15.1",
"happy-dom": "^20.0.10",
"typescript": "^5.0.0",
"vite": "^7.1.12",
"vitest": "^4.0.5"
}
}