-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "jsr2npm",
"version": "0.3.11",
"description": "a cli/lib to clone/duplicate/mirror your package from jsr.io package to npm registry",
"license": "MIT",
"author": {
"name": "slow-groovin",
"url": "https://github.com/slow-groovin"
},
"homepage": "https://github.com/slow-groovin/jsr2npm",
"keywords": [
"jsr",
"npm",
"registry",
"mirror"
],
"type": "module",
"private": false,
"exports": "./src/index.ts",
"bin": {
"jsr2npm": "src/cli.js"
},
"scripts": {
"dev": " bun run src/cli.ts @slow-groovin/jsr2npm -a bin --log-level debug --dry-run --clear ",
"test": "bun test",
"build": "bun run build.ts",
"prepublish": "bun test",
"publish": "jsr publish && bun run mirror",
"mirror": "bun run src/cli.ts @slow-groovin/jsr2npm -a bin --log-level debug"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.14.1",
"@types/shelljs": "^0.8.15"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"commander": "^13.1.0",
"consola": "^3.4.2",
"shelljs": "^0.9.2",
"tar": "^7.4.3",
"type-fest": "^4.40.0"
}
}