-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@quasar/quasar-ui-qwindow",
"version": "3.0.0",
"description": "Floating, movable, resizable windows for your Quasar app",
"keywords": [
"floating",
"quasar",
"quasarframework",
"resizable",
"window",
"windows"
],
"homepage": "https://github.com/quasarframework/quasar-ui-qwindow",
"bugs": "https://github.com/quasarframework/quasar-ui-qwindow/issues",
"license": "MIT",
"author": "Jeff Galbraith <jeff@quasar.dev>",
"contributors": [
{
"name": "Christian Behon",
"email": "christian.behon@knusperleicht.at",
"url": "https://knusperleicht.at"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/quasarframework/quasar-ui-qwindow.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hawkeye64"
},
"files": [
"dist",
"src"
],
"type": "module",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"./index.min.css": {
"default": "./dist/index.min.css"
},
"./index.css": {
"default": "./dist/index.css"
},
"./index.rtl.min.css": {
"default": "./dist/index.rtl.min.css"
},
"./index.rtl.css": {
"default": "./dist/index.rtl.css"
},
"./dist/api/QWindow.json": {
"default": "./dist/api/QWindow.json"
},
"./*": "./*"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "oxlint src build types",
"dev:umd": "pnpm build && tsx build/script.open-umd.ts",
"build": "tsx build/index.ts",
"build:js": "tsx build/script.javascript.ts",
"build:css": "tsx build/script.css.ts",
"build:api": "tsx build/build.api.ts",
"build:app-ext": "tsx build/script.app-ext.ts",
"typecheck": "pnpm build:api && tsc -p tsconfig.json --noEmit --pretty false && tsc -p test-d/tsconfig.json --noEmit --pretty false",
"test:types": "pnpm build && pnpm typecheck",
"release": "pnpm publish --tag latest",
"prepack": "pnpm build"
},
"devDependencies": {
"@md-plugins/quasar-app-extension-q-press": "1.0.0",
"@types/node": "^26.1.0",
"@types/rtlcss": "^3.5.4",
"@types/uglify-js": "^3.17.5",
"autoprefixer": "^10.5.2",
"cssnano": "^8.0.2",
"kolorist": "^1.8.0",
"open": "^11.0.0",
"postcss": "^8.5.16",
"quasar": "^2.21.1",
"rimraf": "^6.1.3",
"rolldown": "^1.1.4",
"rtlcss": "^4.3.0",
"sass-embedded": "1.100.0",
"table": "^6.9.0",
"tsx": "^4.23.0",
"typescript": "~6.0.3",
"uglify-js": "^3.19.3",
"vue": "^3.5.39"
},
"browserslist": [
"last 4 Chrome versions",
"last 4 Firefox versions",
"last 2 Edge versions",
"last 4 Safari versions",
"last 4 Android versions",
"last 4 ChromeAndroid versions",
"last 4 FirefoxAndroid versions",
"last 4 iOS versions"
],
"engines": {
"node": ">=22.13",
"pnpm": ">=11.5.0"
}
}