-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1020 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
40
41
42
43
44
45
46
{
"name": "@atomico/astro",
"version": "0.5.0",
"description": "Atomico + Astro build support",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./setup.js",
"module": "./setup.js",
"exports": {
".": "./setup.js",
"./client": "./client.js",
"./server": "./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomicojs/astro.git"
},
"keywords": [
"astro",
"jsx",
"webcomponents",
"atomico"
],
"author": "UpperCod",
"license": "ISC",
"bugs": {
"url": "https://github.com/atomicojs/astro/issues"
},
"homepage": "https://github.com/atomicojs/astro#readme",
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.3",
"astro": "latest"
},
"dependencies": {
"@atomico/vite": "latest",
"atomico": "latest"
},
"peerDependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.3",
"astro": "latest",
"@atomico/vite": "latest",
"atomico": "latest"
}
}