-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.29 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "pipecraft",
"version": "0.0.0-releaseit",
"description": "Automated CI/CD pipeline generator for trunk-based development. Generates intelligent GitHub Actions workflows with domain-based change detection, semantic versioning, and branch flow management. Full documentation: https://pipecraft.thecraftlab.dev",
"license": "MIT",
"type": "module",
"bin": {
"pipecraft": "./dist/cli/index.js"
},
"files": [
"dist",
"src/generators",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/the-craftlab/pipecraft.git"
},
"homepage": "https://pipecraft.thecraftlab.dev",
"bugs": {
"url": "https://github.com/the-craftlab/pipecraft/issues"
},
"keywords": [
"ci-cd",
"github-actions",
"trunk-based-development",
"pipeline",
"workflow",
"monorepo",
"semantic-versioning",
"automation",
"devops",
"continuous-integration",
"continuous-deployment",
"workflow-generator"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run --exclude '.worktrees/**'",
"test:ui": "vitest --ui --exclude '.worktrees/**'",
"test:run": "vitest run --exclude '.worktrees/**'",
"test:coverage": "vitest run --coverage --exclude '.worktrees/**'",
"test:watch": "vitest --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-pattern '.worktrees/**'",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"lint:strict": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"validate:pipeline": "node tests/tools/validation/validate-pipeline.cjs",
"pipecraft": "tsx src/cli/index.ts",
"init": "tsx src/cli/index.ts init --interactive",
"generate": "tsx src/cli/index.ts generate",
"verify": "tsx src/cli/index.ts verify",
"docs:build": "cd docs && pnpm run build",
"docs:dev": "cd docs && pnpm run start",
"docs:serve": "cd docs && pnpm run serve",
"docs:typedoc": "cd docs && pnpm run typedoc",
"docs:deploy": "npm run build && cd docs && pnpm run typedoc && pnpm run build",
"examples:store-git": "./scripts/store-example-git-repos.sh",
"examples:activate": "node tests/scripts/activate-example-repos.mjs",
"examples:deactivate": "node tests/scripts/deactivate-example-repos.mjs",
"sync-actions": "tsx tests/scripts/sync-actions.ts",
"sync-actions:check": "tsx tests/scripts/sync-actions.ts --check",
"sync-actions:verify": "tsx tests/scripts/sync-actions.ts --verify",
"e2e:reset": "tsx scripts/e2e/harness.ts reset",
"e2e:prove": "tsx scripts/e2e/harness.ts prove",
"e2e:run": "tsx scripts/e2e/harness.ts run",
"sync-examples": "tsx scripts/sync-examples.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/inquirer": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.8",
"c8": "^10.1.3",
"conventional-changelog-angular": "latest",
"docusaurus-plugin-typedoc": "^1.4.2",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"inquirer": "^12.10.0",
"lint-staged": "^16.2.7",
"prettier": "^2.8.8",
"release-it": "^18.1.2",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@featherscloud/pinion": "^0.5.5",
"commander": "^14.0.1",
"cosmiconfig": "^9.0.0",
"dedent": "^1.7.0",
"glob": "^13.0.1",
"yaml": "^2.8.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0"
],
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --check"
]
}
}