-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@qwikdev/astro",
"description": "Use Qwik components and Resumability within Astro",
"version": "0.7.12",
"contributors": [
{
"name": "Jack Shelton",
"email": "me@jackshelton.com",
"url": "https://x.com/TheJackShelton"
},
{
"name": "Sigui Kessé Emmanuel",
"email": "dev@sikessem.com",
"url": "https://x.com/siguici"
},
{
"name": "Wout Mertens",
"email": "wout.mertens@gmail.com",
"url": "https://x.com/wmertens"
},
{
"name": "Miško Hevery",
"email": "misko@hevery.com",
"url": "https://x.com/mhevery"
}
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QwikDev/astro",
"directory": "libs/qwikdev/astro"
},
"types": "./src/index.ts",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./server": "./server.ts",
"./utils": "./src/utils.ts",
"./q-astro-manifest.json": "./q-astro-manifest.json"
},
"files": ["src", "src/index.ts", "server.ts", "env.d.ts"],
"keywords": [
"astro-integration",
"astro-component",
"renderer",
"withastro",
"performance",
"perf",
"optimization",
"qwik"
],
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/thejackshelton/@qwikdev/astro/issues",
"dependencies": {
"@inox-tools/inline-mod": "^2.0.3",
"astro-integration-kit": "^0.18.0"
},
"devDependencies": {
"@builder.io/qwik": "https://pkg.pr.new/@builder.io/qwik@465483f",
"astro": "^5.7.10",
"vite": "^6.3.4"
},
"peerDependencies": {
"@builder.io/qwik": ">=1.9.0"
}
}