forked from aelbore/rollup-plugin-swc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.95 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
83
84
85
86
87
{
"name": "@leonardssh/rollup-plugin-swc",
"version": "0.1.7",
"description": "Rollup plugin to compile bundles with the SWC.",
"homepage": "https://github.com/LeonardSSH/use-lanyard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LeonardSSH/use-lanyard.git"
},
"bugs": {
"url": "https://github.com/LeonardSSH/use-lanyard/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.js",
"dist/index.d.ts",
"LICENSE",
"README.md"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "node scripts/clean-dist.mjs",
"clean:types": "rm -rf types",
"build": "yarn clean && rollup -c && yarn build:types && yarn build:dts && yarn clean:types",
"build:types": "tsc --emitDeclarationOnly",
"build:dts": "api-extractor run --local --verbose"
},
"keywords": [
"rollup",
"plugin",
"swc"
],
"author": "Petr Tsymbarovich <petr@tsymbarovich.ru>",
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "^7.18.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@swc/core": "^1.2.77",
"@types/node": "^14.17.9",
"rollup": "^2.56.2",
"rollup-plugin-dts": "^1.4.14",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
},
"peerDependencies": {
"@swc/core": ">=1.1",
"rollup": ">=2.10.9"
},
"publishConfig": {
"access": "public"
},
"private": false,
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"endOfLine": "lf",
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": true,
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 80,
"overrides": [
{
"files": [
"*.yml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}