forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.9 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
71
{
"name": "@qwik.dev/react",
"description": "Qwik React allows adding React components into existing Qwik application",
"version": "2.0.0-beta.13",
"bugs": "https://github.com/QwikDev/qwik/issues",
"devDependencies": {
"@qwik.dev/core": "workspace:*",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.7",
"react": "19.1.1",
"react-dom": "19.1.1",
"typescript": "5.9.3",
"vite": "7.1.11"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"exports": {
".": {
"types": "./lib/types/index.qwik.d.ts",
"import": "./lib/index.qwik.mjs"
},
"./vite": {
"types": "./lib/types/vite.d.ts",
"import": "./lib/vite.mjs"
}
},
"files": [
"lib",
"vite"
],
"homepage": "https://qwik.dev/",
"license": "MIT",
"main": "./lib/index.qwik.mjs",
"peerDependencies": {
"@qwik.dev/core": "workspace:^",
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18",
"vite": ">=5 <8"
},
"publishConfig": {
"access": "public"
},
"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"
}