-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 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
{
"name": "@vituum/vite-plugin-concat",
"version": "2.0.2",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"description": "Vite plugin for concatenating files together, handy especially for old projects that used gulp-concat or grunt-concat ",
"keywords": [
"concat",
"vituum",
"vite",
"vite-plugin"
],
"scripts": {
"lint": "npm run eslint && npm run tsc",
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix",
"publish-next": "npm publish --tag next"
},
"dependencies": {
"tinyglobby": "^0.2"
},
"peerDependencies": {
"vite": "^8.0"
},
"devDependencies": {
"@eslint/js": "^10.0",
"@stylistic/eslint-plugin": "^5.10",
"@types/node": "^25.5",
"eslint": "^10.0",
"globals": "^17.4",
"typescript": "^5.9"
},
"files": [
"index.js",
"types"
],
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vituum/vite-plugin-concat.git"
}
}