-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "vite-plugin-legacy-swc",
"version": "1.2.1",
"description": "Provides legacy browsers support for the production build with SWC",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint --fix './**/*.{js,ts}'",
"prepack": "unbuild",
"release": "release-it",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyanSalt/vite-plugin-legacy-swc.git"
},
"keywords": [
"vite",
"vite-plugin",
"legacy",
"swc"
],
"author": "CyanSalt",
"license": "ISC",
"bugs": {
"url": "https://github.com/CyanSalt/vite-plugin-legacy-swc/issues"
},
"homepage": "https://github.com/CyanSalt/vite-plugin-legacy-swc#readme",
"dependencies": {
"@swc/core": "^1.7.10",
"browserslist": "^4.23.3",
"browserslist-to-esbuild": "^2.1.1",
"core-js": "^3.38.0",
"magic-string": "^0.30.11",
"regenerator-runtime": "^0.14.1",
"systemjs": "^6.15.1"
},
"devDependencies": {
"@cyansalt/eslint-config": "^4.1.0",
"@cyansalt/tsconfig": "^2.2.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.14.15",
"acorn": "^8.12.1",
"eslint": "^9.9.0",
"picocolors": "^1.0.1",
"release-it": "^17.6.0",
"rollup": "^4.20.0",
"terser": "^5.31.6",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.4.0",
"vitest": "^2.0.5"
},
"peerDependencies": {
"vite": ">=4.0.0"
}
}