-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.78 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "importmapify",
"version": "1.6.0",
"description": "Expand package.json subpath-pattern imports into explicit Deno import map entries.",
"keywords": [
"deno",
"import-map",
"importmap",
"subpath-imports",
"cli",
"dreamcli",
"ansispeck"
],
"homepage": "https://importmapify.kjanat.dev",
"bugs": {
"url": "https://github.com/kjanat/importmapify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjanat/importmapify.git"
},
"license": "MIT",
"author": {
"name": "Kaj Kowalski",
"email": "info@kajkowalski.nl",
"url": "https://github.com/kjanat"
},
"sideEffects": false,
"type": "module",
"imports": {
"#pkg": "./package.json",
"#deno": "./deno.json",
"#src/*": "./src/*.ts"
},
"exports": {
".": {
"types": "./dist/mod.d.mts",
"default": "./dist/mod.mjs"
},
"./package.json": "./package.json"
},
"bin": {
"importmapify": "dist/mod.mjs"
},
"files": ["/dist", "/README.md", "/LICENSE", "/package.json", "/deno.json", "/import_map.json"],
"scripts": {
"bd": "tsdown",
"build": "tsdown",
"build:watch": "tsdown --watch",
"check": "biome check",
"check:fix": "biome check --fix",
"fmt": "biome check --fix 2>/dev/null; dprint fmt",
"jsr:publish": "bunx jsr publish --allow-dirty",
"lint": "biome lint",
"prepack": "run -q build -l error",
"prepare": "./scripts/generate-importmap.ts",
"runbin": "node \"$(jq -r '.bin.importmapify' package.json)\"",
"test": "bun test",
"test:coverage": "run -q test --coverage",
"test:smoke": "./scripts/smoke.mjs",
"test:watch": "run -q test --watch",
"typecheck": "run @typescript/native --noEmit",
"url:jsr": "printf 'url=https://jsr.io/%s@%s\n' \"$(jq -r '.name' deno.json)\" \"$(jq -r '.version' deno.json)\"",
"url:npm": "printf 'url=https://npm.im/package/%s/v/%s\n' \"$(jq -r '.name' package.json)\" \"$(jq -r '.version' package.json)\"",
"volta:bump": "volta pin node@latest npm@11; node --version>.node-version; run bd"
},
"dependencies": {
"ansispeck": "^0.2.0",
"dreamcli": "npm:@kjanat/dreamcli@^3.0.0-rc.11"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.5",
"@types/bun": "^1.3.14",
"@types/deno": "^2.7.0",
"@types/node": "^26.1.1",
"@typescript/native": "npm:typescript@^7",
"biome": "npm:@biomejs/biome@^2.5.4",
"dprint": "^0.55.2",
"publint": "^0.3.21",
"runner-run": "^0.20.0",
"sort-package-json": "^4.0.0",
"tombi": "^1.2.1",
"tsdown": "^0.22.7",
"typescript": ">=6,<7",
"unplugin-unused": "^0.5.7"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3",
"deno": ">=2",
"node": ">=22.22.2 <23 || >=24.2"
},
"volta": {
"node": "26.5.0",
"npm": "11.18.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}