-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.3 KB
/
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
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
{
"name": "@jrmc/edge-components",
"version": "2.1.0",
"type": "module",
"description": "",
"engines": {
"node": ">=20.12.0"
},
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/batosai/edge-components.git"
},
"author": "Jeremy Chaufourier [email protected]",
"license": "MIT",
"keywords": [
"edge.js",
"edge-components",
"daisyui",
"tailwind",
"adonisjs"
],
"files": [
"build",
"views",
"changelog.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"exports": {
".": "./build/index.js",
"./edge_components_provider": "./build/providers/edge_components_provider.js",
"./tailwind.config": "./build/src/tailwind.config.js"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.17.1",
"@adonisjs/tsconfig": "^1.4.0",
"@poppinss/utils": "^6.7.3",
"@types/node": "^22.10.7",
"edge.js": "^6.2.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"alpinejs": "^3.13.0",
"daisyui": "^4.9.0",
"tailwindcss": "^3.4.0"
},
"peerDependenciesMeta": {
"alpinejs": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"volta": {
"node": "20.12.0"
}
}