-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 895 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
39
{
"author": "Bryce Russell",
"license": "MIT",
"name": "astro-json-element",
"version": "1.1.4",
"description": "Create/define HTML elements using JSON objects",
"homepage": "https://github.com/BryceRussell/astro-json-element#readme",
"repository": {
"type": "git",
"url": "https://github.com/BryceRussell/astro-json-element"
},
"bugs": {
"url": "https://github.com/BryceRussell/astro-json-element/issues"
},
"keywords": [
"astro",
"astro-component",
"astro-json-element",
"html",
"element",
"json"
],
"type": "module",
"main": "./src/index.mjs",
"exports": "./src/index.mjs",
"files": [
"src/index.mjs",
"src/Element.astro"
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/tailwind": "^1.0.0",
"astro": "^1.0.4"
}
}