-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 965 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 965 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
36
37
38
{
"name": "@esm.sh/import-map",
"version": "0.4.0",
"description": "A import map parser and resolver.",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"files": [
"dist/",
"types/",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && esbuild --bundle --format=esm --outdir=dist --out-extension:.js=.mjs --external:semver src/index.ts",
"test": "bun test src/*.test.ts"
},
"dependencies": {
"semver": "^7.7.4"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/semver": "^7.7.1",
"esbuild": "0.27.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esm-dev/import-map.git"
},
"bugs": {
"url": "https://github.com/esm-dev/import-map/issues"
},
"homepage": "https://github.com/esm-dev/import-map#readme",
"author": "ije",
"license": "MIT"
}