forked from chialab/rna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "@chialab/esbuild-plugin-swc",
"type": "module",
"version": "0.8.4",
"description": "A pluggable esbuild plugin that runs swc for es5 transpilation.",
"main": "lib/index.js",
"typings": "./types/index.d.ts",
"author": "Chialab <dev@chialab.io> (https://www.chialab.it)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chialab/rna",
"directory": "packages/esbuild-plugin-swc"
},
"keywords": [
"esbuild",
"plugin",
"swc",
"babel",
"es5"
],
"scripts": {
"types": "tsc",
"prepack": "npm run types"
},
"files": [
"lib",
"types",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=13"
},
"dependencies": {
"@chialab/esbuild-plugin-transform": "^0.8.4",
"@chialab/swc-plugin-htm": "^0.8.0",
"@swc/core": "^1.2.54",
"@swc/helpers": "^0.2.10",
"esbuild": "^0.12.0",
"resolve": "^1.20.0"
},
"devDependencies": {
"@chialab/swc-types": "^0.8.0",
"typescript": "^4.2.3"
}
}