-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 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": "@codecb/rollup-plugin-strip",
"version": "0.0.4",
"description": "A rewrite of @rollup/plugin-strip, using a new, type-safe AST traversal library",
"license": "MIT",
"author": {
"email": "icodemyownlife@gmail.com",
"name": "ICodeMyOwnLife"
},
"repository": {
"directory": "packages/strip",
"type": "git",
"url": "https://github.com/code-cb/rollup-plugins"
},
"files": [
"./dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@codecb/estree-traverse": "0.0.2",
"@rollup/pluginutils": "^5.0",
"@types/esprima": "^4.0",
"esprima": "^4.0",
"magic-string": "^0.27.0"
},
"peerDependencies": {
"rollup": "^3.9"
}
}