-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
{
"type": "module",
"name": "npm-ri",
"private": false,
"description": "npm install packages using regular expressions to update installed dependencies",
"version": "0.0.6",
"author": "Danilo Britto",
"repository": {
"type": "git",
"url": "git+https://github.com/dbritto-dev/npm-ri.git"
},
"source": "./src/index.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"sideEffects": false,
"files": [
"bin"
],
"bin": {
"npm-ri": "bin/index.js"
},
"scripts": {
"build": "vite build",
"check": "biome check ./src"
},
"keywords": [
"npm install",
"npm install regex",
"regex"
],
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^20.14.9",
"biome": "^0.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.3"
},
"dependencies": {
"commander": "^12.1.0"
}
}