-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
70
71
72
73
74
75
76
77
78
{
"name": "ionic-qwik",
"version": "0.0.5",
"description": "The `qwik` bindings for `@ionic/core`.",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib-types/src/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/src/index.d.ts"
}
},
"files": [
"lib",
"lib-types"
],
"engines": {
"node": ">=15.0.0"
},
"type": "module",
"author": {
"name": "JuerGenie",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/juergenie/ionic-qwik",
"repository": {
"type": "git",
"url": "https://github.com/juergenie/ionic-qwik"
},
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"release": "np",
"start": "vite --open --mode ssr",
"test": "echo \"No test specified\" && exit 0",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.2.17",
"@builder.io/qwik-city": "^1.2.17",
"@ionic/core": "^7.5.4",
"@maskito/core": "^1.8.1",
"@types/eslint": "^8.44.4",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-plugin-qwik": "latest",
"np": "^8.0.4",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"qwik": "^1.0.57",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"undici": "^5.26.0",
"vite": "^4.4.11",
"vite-tsconfig-paths": "^4.2.1"
},
"peerDependencies": {
"@ionic/core": "^7.5.4",
"@maskito/core": "^1.8.1",
"qwik": "^1.0.57"
},
"dependencies": {
"change-case": "^5.1.2"
}
}