-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 972 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": "@magda/esm-utils",
"version": "1.0.1",
"type": "module",
"exports": {
".": "./dist/esmUtils.js",
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "rimraf dist lib",
"build": "yarn build-main && yarn build-types && yarn build-types-bundle && rimraf lib",
"build-main": "node esbuild.js",
"build-types": "tsc --emitDeclarationOnly",
"build-types-bundle": "api-extractor run --local"
},
"description": "Utilities helps when migrating to ESM projects",
"main": "index.js",
"repository": "[email protected]:magda-io/esm-utils.git",
"author": "Jacky Jiang <[email protected]>",
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@microsoft/api-extractor": "^7.39.0",
"@types/node": "^18.11.9",
"caller-path": "^4.0.0",
"esbuild": "^0.19.10",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
]
}