-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
54
55
56
57
58
59
{
"name": "npm-san-check",
"version": "0.2.7",
"description": "Simple npm check with fewer dependency and fewer functionalities.",
"type": "module",
"author": "i'DLisT <i@idl.ist> (https://idl.ist/)",
"license": "MIT",
"files": [
"bin"
],
"main": "bin/cli.js",
"bin": {
"npm-sc": "bin/cli.js",
"npm-san-check": "bin/cli.js"
},
"homepage": "https://github.com/idlist/npm-san-check#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/idlist/npm-san-check.git"
},
"bugs": {
"url": "https://github.com/idlist/npm-san-check"
},
"keywords": [
"npm",
"check",
"dependency",
"updater"
],
"scripts": {
"dev": "tsx lib/cli.ts",
"build": "tsx build.ts",
"build:prod": "tsc && tsx build.ts",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"dependencies": {
"kleur": "^4.1.5",
"minimist": "^1.2.8",
"p-ratelimit": "^1.0.1",
"semver": "^7.6.3",
"undici": "^6.20.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/cli-progress": "^3.11.6",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/node": "^22.8.1",
"@types/semver": "^7.5.8",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"lodash-es": "^4.17.21",
"tsx": "^4.19.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}