-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.84 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
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
{
"name": "pkgscan",
"displayName": "pkgscan - Installed Package Scan",
"description": "Retrieve information on installed packages across npm, pnpm and yarn",
"version": "1.0.24",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist/**"
],
"bin": {
"pkgscan": "./dist/cli.js"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/nguyenngoclongdev/pkgscan"
},
"bugs": {
"url": "https://github.com/nguyenngoclongdev/pkgscan/issues"
},
"sponsor": {
"url": "https://ko-fi.com/nguyenngoclong"
},
"funding": {
"type": "individual",
"url": "https://ko-fi.com/nguyenngoclong"
},
"homepage": "https://nguyenngoclongdev.github.io",
"categories": [
"Other"
],
"keywords": [
"find",
"search",
"scan",
"installed",
"package",
"npm",
"lockfile",
"package.json",
"yarn",
"yarn.lock",
"pnpm",
"pnpm-lock.yaml",
"dependencies",
"devDependencies"
],
"scripts": {
"compile": "tsup --config tsup.config.ts",
"lint": "eslint src --ext ts",
"test": "jest --passWithNoTests",
"gi": "npm install -g .",
"pkgscan": "node dist/cli.js",
"cs": "changeset",
"ci:compile": "pnpm compile",
"ci:publish": "changeset publish && git push --follow-tags"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.3.1",
"@types/semver": "^7.5.0",
"@types/yargs": "^17.0.24",
"@types/yarnpkg__lockfile": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"esbuild": "^0.18.4",
"eslint": "^8.43.0",
"glob": "^10.2.7",
"jest": "^29.5.0",
"npm-dts": "^1.3.12",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"tsup": "7.2.0"
},
"dependencies": {
"@pnpm/constants": "^7.1.1",
"@pnpm/dependency-path": "^2.1.2",
"@pnpm/error": "^5.0.2",
"@pnpm/lockfile-types": "^5.1.0",
"@pnpm/merge-lockfile-changes": "^5.0.2",
"@pnpm/types": "^9.1.0",
"@yarnpkg/lockfile": "^1.1.0",
"ansi-colors": "^4.1.3",
"comver-to-semver": "^1.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^9.0.1",
"semver": "^7.5.2",
"yargs": "^17.7.2"
},
"author": {
"name": "Nguyen Ngoc Long",
"url": "https://nguyenngoclongdev.github.io"
},
"publisher": "nguyenngoclong",
"license": "MIT"
}