-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "nuxt-quasar-ui",
"type": "module",
"version": "2.1.6",
"packageManager": "[email protected]",
"description": "Quasar Module for Nuxt (Unofficial)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Maiquu/nuxt-quasar"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:analyze": "nuxi analyze playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"dev:preview": "nuxi preview playground",
"changelogen": "changelogen --release --no-tag --no-commit && eslint . --fix",
"typecheck": "tsc --project playground/.nuxt/tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"peerDependencies": {
"@quasar/extras": "^1",
"quasar": "^2.8.0"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"defu": "^6.1.4",
"magic-string": "^0.30.11",
"p-memoize": "^7.1.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@antfu/eslint-config-ts": "0.39.5",
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.2",
"@quasar/extras": "^1.16.12",
"@types/jsdom": "^21.1.7",
"changelogen": "^0.5.5",
"eslint": "^8.57.1",
"fast-folder-size": "^2.2.0",
"jsdom": "^24.1.3",
"nuxt": "^3.13.2",
"quasar": "^2.16.11",
"sass": "^1.78.0",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vitest": "^2.1.1",
"vue": "^3.5.6"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"@opentelemetry/*"
]
}
}
}