forked from jsr-io/jsr-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
49
50
51
52
53
{
"name": "jsr",
"version": "0.12.4",
"description": "jsr.io package manager for node",
"repository": {
"type": "git",
"url": "https://github.com/denoland/jsr-node-cli.git"
},
"bin": {
"jsr": "dist/bin.js"
},
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist-esm/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "mocha -r ts-node/register --extensions ts,tsx --timeout 30000 --watch-files src,test 'test/**/*.test.ts'",
"cli": "ts-node src/bin.ts",
"build": "rimraf dist dist-esm && tsc && tsc -p tsconfig.esm.json",
"prepack": "npm run build"
},
"keywords": [
"install",
"modules",
"package manager",
"package.json",
"dependencies",
"npm"
],
"homepage": "https://jsr.io",
"author": "",
"license": "MIT",
"files": [
"dist/",
"dist-esm/"
],
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.18",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"kolorist": "^1.8.0",
"node-stream-zip": "^1.15.0",
"semiver": "^1.1.0"
}
}