-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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": "@builder.io/qwik-react",
"description": "QwikReact allows adding React components into existing Qwik application",
"version": "0.5.8",
"bugs": "https://github.com/QwikDev/qwik/issues",
"devDependencies": {
"@builder.io/qwik": "workspace:^",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.4.5",
"vite": "7.3.2"
},
"engines": {
"node": ">=16.8.0 <18.0.0 || >=18.11"
},
"exports": {
".": {
"types": "./lib/types/index.qwik.d.ts",
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs"
},
"./vite": {
"types": "./lib/types/vite.d.ts",
"import": "./lib/vite.mjs",
"require": "./lib/vite.cjs"
}
},
"files": [
"lib",
"vite"
],
"homepage": "https://qwik.dev/",
"license": "MIT",
"main": "./lib/index.qwik.mjs",
"peerDependencies": {
"@builder.io/qwik": "workspace:^",
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18",
"vite": ">=5 <8"
},
"qwik": "./lib/index.qwik.mjs",
"repository": {
"type": "git",
"url": "https://github.com/QwikDev/qwik.git",
"directory": "packages/qwik-react"
},
"scripts": {
"build": "npm run build.lib",
"build.client": "vite build",
"build.lib": "vite build --mode lib",
"build.ssr": "vite build --ssr src/entry.ssr.tsx",
"dev": "vite",
"dev.debug": "node --inspect-brk ../../node_modules/vite/bin/vite.js --mode ssr --force",
"dev.ssr": "vite --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"lint.fix": "eslint --fix \"src/**/*.ts*\"",
"release": "pnpm run -w build.local && pnpm publish",
"start": "npm run dev",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"types": "./lib/types/index.qwik.d.ts"
}