-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 889 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
{
"name": "esbuild-plugin-umd-wrapper",
"version": "3.0.0",
"description": "UMD wrapper for esbuild",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Inqnuam",
"license": "MIT",
"homepage": "https://github.com/inqnuam/esbuild-plugin-umd-wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/inqnuam/esbuild-plugin-umd-wrapper.git"
},
"keywords": [
"esbuild",
"plugin",
"umd",
"amd",
"wrapper",
"requirejs",
"define"
],
"devDependencies": {
"@types/node": "^18.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.23.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"serve": "^14.2.3",
"typescript": "^5.5.3"
},
"scripts": {
"build": "node ./build.mjs",
"dev": "node ./build.mjs watch",
"serve": "serve test/dist"
}
}