-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.73 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.73 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
{
"name": "vite-plugin-merge",
"description": "Vite plugin which merges multiple input directories into the output directory.",
"version": "1.0.1",
"author": "Nixy <info@nixy.software>",
"repository": "github:NixySoftware/vite-plugin-merge",
"license": "MIT",
"keywords": [
"vite-plugin"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.lib.json && tsc -b",
"check:licenses": "license-checker-rseidelsohn --summary --onlyAllow 'Apache-2.0;BSD-2-Clause;BSD-3-Clause;BlueOak-1.0.0;CC-BY-3.0;CC0-1.0;ISC;MIT;Python-2.0'",
"dev": "npm run build && tsc -b -w",
"lint": "eslint .",
"test:unit": "vitest run --coverage",
"test:unit:dev": "vitest --ui"
},
"peerDependencies": {
"vite": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"chokidar": "^5.0.0",
"deepmerge-ts": "^7.1.5",
"sirv": "^3.0.2",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"license-checker-rseidelsohn": "^4.4.2",
"prettier": "^3.7.4",
"prettier-plugin-sort-json": "^4.1.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16"
}
}