generated from emosheeep/cli-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
{
"name": "circular-dependency-scanner",
"version": "2.3.0",
"type": "module",
"description": "Out-of-box and zero configuration circular dependencies detector, with both JavaScript API and Command Line Tool.",
"author": "情绪羊 <[email protected]>",
"packageManager": "[email protected]",
"license": "MIT",
"bin": {
"ds": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"CHANGELOG.md",
"README.md",
"README.zh_CN.md"
],
"repository": {
"type": "github",
"url": "https://github.com/emosheeep/circular-dependency-scanner"
},
"keywords": [
"circular",
"scanner",
"detector",
"circles",
"cyclic",
"ast",
"javascript",
"ecmascript",
"circular-dependency",
"cli"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run test && npm run build",
"lint": "eslint . --fix --ext .js,.ts",
"build": "tsup",
"watch": "tsup --watch",
"changeset": "changeset",
"versions": "changeset version",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"@ast-grep/napi": "^0.27.1",
"@vue/compiler-sfc": "^3.5.3",
"commander": "^12.1.0",
"get-tsconfig": "^4.8.0",
"graph-cycles": "^3.0.0",
"listr2": "^8.2.4",
"minimatch": "^9.0.5",
"node-cleanup": "^2.1.2",
"typescript": "^5.5.4",
"update-notifier": "^7.3.0",
"zx": "^8.1.5"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"vitest": "^2.0.5"
}
}