-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
82 lines (82 loc) · 2.44 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
{
"name": "rollup-plugin-swc3",
"version": "0.12.1",
"description": "Use SWC with Rollup to transform ESNext and TypeScript code.",
"homepage": "https://github.com/SukkaW/rollup-plugin-swc#readme",
"repository": {
"type": "git",
"url": "https://github.com/SukkaW/rollup-plugin-swc.git"
},
"bugs": {
"url": "https://github.com/SukkaW/rollup-plugin-swc/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run build",
"clean": "rimraf ./dist ./test/temp",
"build": "SWC_NODE_PROJECT=./tsconfig.json node -r @swc-node/register tools/build.ts",
"test": "SWC_NODE_PROJECT=./tsconfig.json mocha -r @swc-node/register test/index.ts",
"lint": "eslint --format sukka ."
},
"author": "",
"license": "MIT",
"dependencies": {
"@dual-bundle/import-meta-resolve": "^4.1.0",
"@fastify/deepmerge": "^2.0.0",
"@rollup/pluginutils": "^5.1.2",
"@swc/types": "^0.1.12",
"get-tsconfig": "^4.8.1",
"rollup-preserve-directives": "^1.1.2"
},
"devDependencies": {
"@eslint-sukka/node": "^6.7.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.35",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@types/which": "^3.0.4",
"chai": "^4.5.0",
"eslint": "^9.12.0",
"eslint-config-sukka": "^6.7.0",
"eslint-formatter-sukka": "^6.7.0",
"fdir": "^6.4.0",
"memdisk": "^1.2.1",
"mocha": "^10.7.3",
"mocha-chai-jest-snapshot": "^1.1.6",
"picocolors": "^1.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup2": "npm:rollup@^2.79.2",
"rollup3": "npm:rollup@^3.29.5",
"tinyexec": "^0.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"which": "^5.0.0"
},
"peerDependencies": {
"@swc/core": ">=1.2.165",
"rollup": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4",
"engines": {
"node": ">=16"
},
"overrides": {
"rollup": "$rollup"
}
}