-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "ghost-dependencies-cli",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist"
],
"bin": {
"dep-analyzer": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format esm --dts --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bluebird2000/Ghost-dependencies-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bluebird2000/Ghost-dependencies-cli/issues"
},
"homepage": "https://github.com/Bluebird2000/Ghost-dependencies-cli#readme",
"description": "",
"devDependencies": {
"@types/node": "^22.15.30",
"@types/yargs": "^17.0.33"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.34.0",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"tsup": "^8.4.0",
"typescript": "^4.0.0",
"yargs": "^18.0.0"
}
}