forked from upupming/esbuild-plugin-license
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 957 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
37
38
39
40
41
42
{
"name": "@alloc/esbuild-plugin-license",
"type": "module",
"version": "2.0.0",
"description": "esbuild plugin for generating license for your bundle",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"prepublishOnly": "pnpm -s build",
"build": "rimraf dist && tsup",
"dev": "rimraf dist && tsup --watch --sourcemap"
},
"files": [
"dist"
],
"keywords": [
"license",
"esbuild"
],
"author": "Yiming Li",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alloc/esbuild-plugin-license.git"
},
"devDependencies": {
"@types/node": "22.5.5",
"esbuild": "0.23.1",
"radashi": "12.2.0-beta.af825f4",
"read-pkg-up": "9.0.0",
"rimraf": "^6.0.1",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
"peerDependencies": {
"esbuild": "*"
}
}