forked from timreichen/importmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.4 KB
/
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
43
44
45
46
47
48
{
"name": "deno-importmap",
"version": "0.2.1",
"description": "Resolve specifiers with import maps.",
"main": "lib/mod.cjs",
"module": "lib/mod.mjs",
"typings": "lib/mod.d.ts",
"type": "commonjs",
"exports": {
".": {
"require": "./lib/mod.cjs",
"default": "./lib/mod.mjs"
}
},
"scripts": {
"test": "node run-tests.mjs",
"build": "yarn run build:js && yarn run build:types",
"build:js": "node esbuild.mjs",
"build:types": "tsc --emitDeclarationOnly || exit 0",
"types": "tsc ./mod.ts --declaration --emitDeclarationOnly --out mod.js --module amd --target es2015",
"git:upstream:init": "git remote add upstream https://github.com/timreichen/importmap.git || exit 0",
"git:upstream:merge": "yarn git:upstream:init && git fetch upstream && git merge upstream/master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalcib/deno-importmap.git"
},
"author": "Dalci de Jesus Bagolin <dalci.b+npm@gmail.com> (https://github.org/dalcib)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalcib/deno-importmap/issues"
},
"homepage": "https://github.com/dalcib/deno-importmap#readme",
"keywords": [
"importmap",
"importmaps",
"import-map",
"import-maps",
"deno"
],
"dependencies": {
"@types/node": "^18.11.9"
},
"devDependencies": {
"esbuild": "^0.15.16",
"typescript": "^4.9.3"
}
}