-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 774 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 774 Bytes
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
{
"name": "gulp-swc",
"version": "2.2.0",
"description": "Use swc javascript/typescript compiler with Gulp",
"main": "index.js",
"repository": "git://github.com:konclave/gulp-swc.git",
"homepage": "https://github.com/konclave/gulp-swc#readme",
"author": "Ivan Vasilev <vianomore@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@swc/core": "^1.7.20",
"gulp": "~3.9.0 || ^4.0.0 || ^5.0.0"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"plugin-error": "^2.0.1",
"source-map": "^0.7.4"
},
"keywords": [
"gulpplugin",
"swc",
"compiler",
"javascript",
"typescript",
"transpiler"
],
"scripts": {
"publish": "clean-publish"
},
"devDependencies": {
"clean-publish": "^5.0.0"
}
}