-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@qwikdev/qwik-preact",
"version": "0.1.2",
"description": "QwikPreact allows adding Preact components into existing Qwik application",
"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*\"",
"release": "np",
"start": "npm run dev",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@builder.io/qwik": ">=0.22.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"preact": "^10.15.1",
"preact-render-to-string": "^6.1.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-dts": "^3.0.2"
},
"peerDependencies": {
"@builder.io/qwik": ">=0.22.0",
"preact": "^10.15.1",
"preact-render-to-string": "^6.1.0"
},
"engines": {
"node": ">=16"
},
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib/index.qwik.d.ts"
},
"./vite": {
"import": "./lib/vite.mjs",
"require": "./lib/vite.cjs",
"types": "./lib/vite.d.ts"
}
},
"files": [
"lib",
"vite"
],
"license": "MIT",
"homepage": "https://qwik.builder.io/",
"repository": {
"type": "git",
"url": "https://github.com/QwikDev/qwik-preact"
},
"bugs": {
"url": "https://github.com/QwikDev/qwik-preact/issues"
},
"type": "module",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib/index.qwik.d.ts"
}