@braingrid/cli 0.2.13 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,114 +1,117 @@
1
1
  {
2
- "name": "@braingrid/cli",
3
- "version": "0.2.13",
4
- "description": "BrainGrid - Turn thoughts into AI-ready specs. Command-line interface for spec-driven development.",
5
- "type": "module",
6
- "main": "dist/cli.js",
7
- "bin": {
8
- "braingrid": "dist/cli.js"
9
- },
10
- "keywords": [
11
- "cli",
12
- "braingrid",
13
- "ai",
14
- "spec-driven-development",
15
- "requirements",
16
- "tasks",
17
- "cursor",
18
- "claude-code",
19
- "ai-coding",
20
- "development-workflow",
21
- "typescript"
22
- ],
23
- "author": "BrainGrid <support@braingrid.ai>",
24
- "license": "UNLICENSED",
25
- "homepage": "https://www.braingrid.ai",
26
- "repository": {
27
- "type": "git",
28
- "url": "git+https://github.com/BrainGridAI/braingrid.git"
29
- },
30
- "files": [
31
- "dist",
32
- "README.md",
33
- "CHANGELOG.md",
34
- "LICENSE.md"
35
- ],
36
- "dependencies": {
37
- "@inquirer/prompts": "^7.8.6",
38
- "axios": "^1.10.0",
39
- "chalk": "^5.3.0",
40
- "commander": "^12.0.0",
41
- "conf": "13.0.1",
42
- "node-machine-id": "1.1.12",
43
- "omelette": "^0.4.17",
44
- "open": "^10.1.0",
45
- "zod": "^4.1.11"
46
- },
47
- "devDependencies": {
48
- "@types/node": "^20.19.1",
49
- "@typescript-eslint/eslint-plugin": "^8.39.1",
50
- "@typescript-eslint/parser": "^8.39.1",
51
- "@vitest/coverage-v8": "^3.2.3",
52
- "@vitest/ui": "^3.2.3",
53
- "depcheck": "^1.4.7",
54
- "eslint": "^9.33.0",
55
- "eslint-config-prettier": "^10.1.8",
56
- "eslint-plugin-prettier": "^5.5.4",
57
- "husky": "^9.1.7",
58
- "knip": "^5.67.1",
59
- "lint-staged": "^16.2.3",
60
- "prettier": "^3.6.2",
61
- "ts-prune": "^0.10.3",
62
- "tsup": "^8.5.0",
63
- "tsx": "^4.16.2",
64
- "typescript": "^5.4.0",
65
- "vitest": "^3.2.3"
66
- },
67
- "lint-staged": {
68
- "*.{ts,tsx}": [
69
- "eslint --fix",
70
- "prettier --write"
71
- ],
72
- "*.{json,md}": [
73
- "prettier --write"
74
- ]
75
- },
76
- "engines": {
77
- "node": ">=20.0.0",
78
- "pnpm": ">=9.0.0"
79
- },
80
- "publishConfig": {
81
- "access": "public"
82
- },
83
- "scripts": {
84
- "build": "tsup",
85
- "build:local": "BUILD_ENV=development tsup",
86
- "build:dev": "BUILD_ENV=development tsup",
87
- "build:prod": "BUILD_ENV=production tsup",
88
- "dev": "tsx src/cli.ts",
89
- "dev:local": "NODE_ENV=local tsx src/cli.ts",
90
- "docs:fetch-openapi": "mkdir -p docs && gh api repos/BrainGridAI/braingrid-app/contents/public/openapi.json | jq -r '.content' | base64 -D > docs/openapi.json",
91
- "docs:sync": "bash scripts/sync-docs-to-braingrid.sh",
92
- "docs:sync-claude": "bash scripts/sync-claude-code-to-braingrid.sh",
93
- "docs:sync-cursor": "bash scripts/sync-cursor-to-braingrid.sh",
94
- "start": "node dist/cli.js",
95
- "start:local": "node dist/cli.js",
96
- "start:dev": "node dist/cli.js",
97
- "lint": "eslint 'src/**/*.{ts,tsx}'",
98
- "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
99
- "format": "prettier --write 'src/**/*.{ts,tsx}'",
100
- "validate:fix": "pnpm lint:fix && pnpm format && pnpm type-check",
101
- "type-check": "tsc --noEmit",
102
- "test": "vitest run",
103
- "test:watch": "vitest --watch",
104
- "test:coverage": "vitest --coverage",
105
- "test:coverage:ci": "vitest run --coverage",
106
- "test:cli": "bash scripts/test-cli.sh",
107
- "test:cli:verbose": "bash scripts/test-cli.sh --verbose",
108
- "clean": "rm -rf dist",
109
- "preversion": "pnpm validate:fix && pnpm test",
110
- "release:patch": "npm version patch && git push && git push --tags",
111
- "release:minor": "npm version minor && git push && git push --tags",
112
- "release:major": "npm version major && git push && git push --tags"
113
- }
114
- }
2
+ "name": "@braingrid/cli",
3
+ "version": "0.2.15",
4
+ "description": "BrainGrid - Turn thoughts into AI-ready specs. Command-line interface for spec-driven development.",
5
+ "type": "module",
6
+ "main": "dist/cli.js",
7
+ "bin": {
8
+ "braingrid": "dist/cli.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsup",
12
+ "build:local": "BUILD_ENV=development tsup",
13
+ "build:dev": "BUILD_ENV=development tsup",
14
+ "build:prod": "BUILD_ENV=production tsup",
15
+ "dev": "tsx src/cli.ts",
16
+ "dev:local": "NODE_ENV=local tsx src/cli.ts",
17
+ "docs:fetch-openapi": "mkdir -p docs && gh api repos/BrainGridAI/braingrid-app/contents/public/openapi.json | jq -r '.content' | base64 -D > docs/openapi.json",
18
+ "docs:sync": "bash scripts/sync-docs-to-braingrid.sh",
19
+ "docs:sync-claude": "bash scripts/sync-claude-code-to-braingrid.sh",
20
+ "docs:sync-cursor": "bash scripts/sync-cursor-to-braingrid.sh",
21
+ "start": "node dist/cli.js",
22
+ "start:local": "node dist/cli.js",
23
+ "start:dev": "node dist/cli.js",
24
+ "lint": "eslint 'src/**/*.{ts,tsx}'",
25
+ "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
26
+ "format": "prettier --write 'src/**/*.{ts,tsx}'",
27
+ "validate:fix": "pnpm lint:fix && pnpm format && pnpm type-check",
28
+ "type-check": "tsc --noEmit",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest --watch",
31
+ "test:coverage": "vitest --coverage",
32
+ "test:coverage:ci": "vitest run --coverage",
33
+ "test:cli": "bash scripts/test-cli.sh",
34
+ "test:cli:verbose": "bash scripts/test-cli.sh --verbose",
35
+ "clean": "rm -rf dist",
36
+ "prepare": "husky",
37
+ "preversion": "pnpm validate:fix && pnpm test",
38
+ "prepublishOnly": "pnpm build:prod",
39
+ "release:patch": "npm version patch && git push && git push --tags",
40
+ "release:minor": "npm version minor && git push && git push --tags",
41
+ "release:major": "npm version major && git push && git push --tags"
42
+ },
43
+ "keywords": [
44
+ "cli",
45
+ "braingrid",
46
+ "ai",
47
+ "spec-driven-development",
48
+ "requirements",
49
+ "tasks",
50
+ "cursor",
51
+ "claude-code",
52
+ "ai-coding",
53
+ "development-workflow",
54
+ "typescript"
55
+ ],
56
+ "author": "BrainGrid <support@braingrid.ai>",
57
+ "license": "UNLICENSED",
58
+ "homepage": "https://www.braingrid.ai",
59
+ "repository": {
60
+ "type": "git",
61
+ "url": "git+https://github.com/BrainGridAI/braingrid.git"
62
+ },
63
+ "files": [
64
+ "dist",
65
+ "README.md",
66
+ "CHANGELOG.md",
67
+ "LICENSE.md"
68
+ ],
69
+ "dependencies": {
70
+ "@inquirer/prompts": "^7.8.6",
71
+ "axios": "^1.10.0",
72
+ "chalk": "^5.3.0",
73
+ "commander": "^12.0.0",
74
+ "conf": "13.0.1",
75
+ "node-machine-id": "1.1.12",
76
+ "omelette": "^0.4.17",
77
+ "open": "^10.1.0",
78
+ "zod": "^4.1.11"
79
+ },
80
+ "devDependencies": {
81
+ "@types/node": "^20.19.1",
82
+ "@typescript-eslint/eslint-plugin": "^8.39.1",
83
+ "@typescript-eslint/parser": "^8.39.1",
84
+ "@vitest/coverage-v8": "^3.2.3",
85
+ "@vitest/ui": "^3.2.3",
86
+ "depcheck": "^1.4.7",
87
+ "eslint": "^9.33.0",
88
+ "eslint-config-prettier": "^10.1.8",
89
+ "eslint-plugin-prettier": "^5.5.4",
90
+ "husky": "^9.1.7",
91
+ "knip": "^5.67.1",
92
+ "lint-staged": "^16.2.3",
93
+ "prettier": "^3.6.2",
94
+ "ts-prune": "^0.10.3",
95
+ "tsup": "^8.5.0",
96
+ "tsx": "^4.16.2",
97
+ "typescript": "^5.4.0",
98
+ "vitest": "^3.2.3"
99
+ },
100
+ "lint-staged": {
101
+ "*.{ts,tsx}": [
102
+ "eslint --fix",
103
+ "prettier --write"
104
+ ],
105
+ "*.{json,md}": [
106
+ "prettier --write"
107
+ ]
108
+ },
109
+ "engines": {
110
+ "node": ">=20.0.0",
111
+ "pnpm": ">=9.0.0"
112
+ },
113
+ "packageManager": "pnpm@9.15.0",
114
+ "publishConfig": {
115
+ "access": "public"
116
+ }
117
+ }