-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.45 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.45 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
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
{
"name": "archctl",
"version": "0.4.6",
"description": "Enforce clean architecture patterns and dependency rules in your codebase with powerful linting and real-time feedback",
"type": "commonjs",
"main": "dist/src/cli.js",
"types": "dist/src/cli.d.ts",
"bin": {
"archctl": "dist/src/cli.js"
},
"scripts": {
"build": "npm run lint && npm run lint:arch && npm run format:check && npm run test && npm run typecheck && tsc && npm run copy:static",
"build:fast": "tsc && npm run copy:static",
"copy:static": "node -e \"require('fs').cpSync('src/templates/static', 'dist/src/templates/static', {recursive: true})\"",
"dev": "ts-node src/cli.ts",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"lint:arch": "node dist/src/cli.js lint || npm run build:fast && node dist/src/cli.js lint",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"pack:test": "npm pack && tar -tzf archctl-0.4.5.tgz",
"prepublishOnly": "npm run build"
},
"keywords": [
"architecture",
"clean-architecture",
"hexagonal",
"ddd",
"domain-driven-design",
"dependency",
"linter",
"cli",
"rules",
"code-quality",
"layered-architecture",
"typescript",
"javascript",
"python",
"java"
],
"author": "qiuethan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qiuethan/archctl.git"
},
"homepage": "https://github.com/qiuethan/archctl#readme",
"bugs": {
"url": "https://github.com/qiuethan/archctl/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"vitest": "^4.0.14"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"chalk": "^4.1.2",
"dt-python-parser": "^0.9.0",
"globby": "^16.0.0",
"java-parser": "^3.0.1",
"minimatch": "^10.0.1",
"typescript": "^5.9.3"
}
}