-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "@adesso-se/vite-plugin-legacy-js-concat",
"version": "1.0.5",
"description": "Concatenate legacy JavaScript files in a specific order into a single bundle for Vite, replacement for gulp-concat.",
"main": "src/vite-plugin-legacy-js-concat.js",
"homepage": "https://github.com/adessoSE/vite-plugin-legacy-js-concat",
"scripts": {
"test": "vitest",
"dev": "vite ./test/app --config ./vite.config.js",
"tag": "git tag v$(node -p \"require('./package.json').version\") && git push origin v$(node -p \"require('./package.json').version\")"
},
"keywords": [
"vite",
"vite-plugin",
"legacy",
"concat",
"javascript",
"gulp"
],
"files": [
"src"
],
"author": "Friedrich Lasnia <Friedrich.Lasnia@adesso.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adessoSE/vite-plugin-legacy-js-concat.git"
},
"bugs": {
"url": "https://github.com/adessoSE/vite-plugin-legacy-js-concat/issues"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"vite": "^7.1.5",
"vitest": "^3.2.4"
}
}