forked from qmhc/grid-layout-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.65 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "grid-layout-plus",
"version": "1.0.5",
"type": "module",
"license": "MIT",
"author": "qmhc",
"packageManager": "[email protected]",
"scripts": {
"build": "tsx scripts/build.ts",
"build:docs": "pnpm -C docs build",
"serve": "pnpm -C dev-server serve",
"serve:docs": "pnpm -C docs serve",
"lint": "eslint --fix --ext .js,.ts,.tsx,.vue src/** dev-server/** docs/**",
"lint:scripts": "eslint --fix --ext .js,.ts scripts/**",
"lint:style": "stylelint **/*.{vue,scss} --fix",
"lint:test": "eslint --ext .js,.ts,.tsx,.vue src/** dev-server/** docs/** scripts/** && stylelint **/*.{vue,scss}",
"postpublish": "pinst --enable",
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
"prepare": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --write \"{src,dev-server,docs}/**/*.{ts,js,json,css,pcss,scss,vue,html,md}\"",
"prettier:scripts": "prettier --write \"scripts/**/*.{ts,js,json}\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"publish:ci": "tsx scripts/publish.ts",
"release": "tsx scripts/release.ts",
"test": "vitest run",
"test:cover": "vitest run --coverage",
"test:dev": "vitest dev"
},
"main": "lib/index.cjs",
"module": "es/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./es/index.mjs",
"require": "./lib/index.cjs",
"types": "./dist/index.d.ts"
},
"./es": "./es/index.mjs",
"./lib": "./lib/index.cjs",
"./es/*.mjs": "./es/*.mjs",
"./es/*": "./es/*.mjs",
"./lib/*.cjs": "./lib/*.cjs",
"./lib/*": "./lib/*.cjs",
"./package.json": "./package.json",
"./*": "./*"
},
"files": [
"dist",
"es",
"lib",
"src",
"CHANGELOG.md",
"types.d.ts"
],
"keywords": [
"flex",
"components",
"vue",
"vexip",
"plugin",
"toolkit",
"vite",
"layout",
"grid-layout",
"vue-grid-layout"
],
"dependencies": {
"@vexip-ui/hooks": "^2.4.0",
"@vexip-ui/utils": "^2.13.0",
"interactjs": "^1.10.26"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@interactjs/types": "^1.10.26",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.12",
"@types/prettier": "^2.7.2",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.3.13",
"@vexip-ui/commitlint-config": "^0.1.0",
"@vexip-ui/eslint-config": "^0.5.2",
"@vexip-ui/prettier-config": "^0.1.0",
"@vexip-ui/stylelint-config": "^0.3.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.14",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.38.0",
"execa": "^7.1.1",
"happy-dom": "^9.8.4",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"kolorist": "^1.7.0",
"lint-staged": "^13.2.1",
"minimist": "^1.2.8",
"pinst": "^3.0.0",
"postcss": "^8.4.23",
"prettier": "^2.8.7",
"prompts": "^2.4.2",
"sass": "^1.62.0",
"semver": "^7.5.0",
"stylelint": "^15.5.0",
"stylelint-prettier": "^3.0.0",
"tsx": "^3.12.6",
"typescript": "5.0.4",
"vite": "^4.3.1",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1",
"vue": "^3.2.47"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"vue"
],
"allowAny": [
"@csstools/*"
]
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}