-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 915 Bytes
/
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
{
"name": "@walrus/rollup-plugin-shebang",
"version": "1.0.1",
"main": "dist/shebang.js",
"module": "dist/shebang.module.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"repository": "[email protected]:walrusjs/rollup-plugin-shebang.git",
"author": "wangxingkang <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --format es,cjs",
"test": "walrus-test",
"release": "walrus release"
},
"dependencies": {
"magic-string": "^0.25.7"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@walrus/cli": "^1.3.4",
"@walrus/plugin-release": "^1.9.1",
"@walrus/test": "^1.1.3",
"microbundle": "^0.12.4",
"rollup": "^2.33.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}