trinity-method-sdk 2.0.7 → 2.0.8
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/CHANGELOG.md +232 -218
- package/README.md +540 -540
- package/dist/cli/commands/deploy/index.js +1 -1
- package/dist/cli/commands/deploy/root-files.js +1 -1
- package/dist/cli/commands/deploy/sdk-install.js +1 -1
- package/dist/cli/commands/update/index.js +4 -1
- package/dist/cli/index.js +1 -0
- package/dist/cli/types.d.ts +1 -0
- package/dist/cli/utils/detect-stack.js +6 -0
- package/dist/cli/utils/template-processor.js +1 -1
- package/dist/templates/agents/aj-team/bon-dependency-manager.md.template +636 -636
- package/package.json +94 -94
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "trinity-method-sdk",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Trinity Method SDK - Investigation-first development methodology for any project",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist/",
|
|
10
|
-
"!dist/**/*.map",
|
|
11
|
-
"README.md",
|
|
12
|
-
"LICENSE",
|
|
13
|
-
"CHANGELOG.md"
|
|
14
|
-
],
|
|
15
|
-
"bin": {
|
|
16
|
-
"trinity": "./dist/cli/index.js"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"clean": "rimraf dist",
|
|
20
|
-
"prebuild": "npm run clean",
|
|
21
|
-
"build": "tsc && npm run copy-templates",
|
|
22
|
-
"copy-templates": "node -e \"const fs=require('fs-extra'); fs.copySync('src/templates', 'dist/templates');\"",
|
|
23
|
-
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
|
|
24
|
-
"test:unit": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects unit",
|
|
25
|
-
"test:integration": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects integration",
|
|
26
|
-
"test:e2e": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects e2e --passWithNoTests",
|
|
27
|
-
"test:performance": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects performance --passWithNoTests",
|
|
28
|
-
"test:coverage": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --coverage",
|
|
29
|
-
"test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch",
|
|
30
|
-
"lint": "eslint src/ tests/",
|
|
31
|
-
"lint:fix": "eslint src/ tests/ --fix",
|
|
32
|
-
"format": "prettier --write src/ tests/",
|
|
33
|
-
"format:check": "prettier --check src/ tests/",
|
|
34
|
-
"type-check": "tsc --noEmit",
|
|
35
|
-
"docs:generate": "typedoc --out docs src/",
|
|
36
|
-
"pretest": "npm run type-check",
|
|
37
|
-
"prepublishOnly": "npm run build && npm run test",
|
|
38
|
-
"prepare": "husky"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"trinity-method",
|
|
42
|
-
"development-methodology",
|
|
43
|
-
"investigation-first",
|
|
44
|
-
"ai-coding",
|
|
45
|
-
"claude-code",
|
|
46
|
-
"cursor",
|
|
47
|
-
"copilot"
|
|
48
|
-
],
|
|
49
|
-
"author": "Trinity Method",
|
|
50
|
-
"license": "MIT",
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@eslint/js": "^9.39.2",
|
|
53
|
-
"@jest/globals": "^30.2.0",
|
|
54
|
-
"@types/fs-extra": "^11.0.4",
|
|
55
|
-
"@types/glob": "^8.1.0",
|
|
56
|
-
"@types/inquirer": "^9.0.9",
|
|
57
|
-
"@types/jest": "^30.0.0",
|
|
58
|
-
"@types/node": "^25.0.3",
|
|
59
|
-
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
60
|
-
"@typescript-eslint/parser": "^8.50.0",
|
|
61
|
-
"eslint": "^9.39.2",
|
|
62
|
-
"eslint-plugin-jest": "^29.5.0",
|
|
63
|
-
"husky": "^9.1.7",
|
|
64
|
-
"jest": "^30.2.0",
|
|
65
|
-
"jest-mock": "^30.2.0",
|
|
66
|
-
"lint-staged": "^16.2.7",
|
|
67
|
-
"prettier": "^3.0.0",
|
|
68
|
-
"rimraf": "^6.0.1",
|
|
69
|
-
"ts-jest": "^29.1.0",
|
|
70
|
-
"typedoc": "^0.28.15",
|
|
71
|
-
"typescript": "^5.9.3"
|
|
72
|
-
},
|
|
73
|
-
"dependencies": {
|
|
74
|
-
"chalk": "^5.3.0",
|
|
75
|
-
"commander": "^14.0.2",
|
|
76
|
-
"fs-extra": "^11.3.3",
|
|
77
|
-
"glob": "^13.0.0",
|
|
78
|
-
"inquirer": "^13.1.0",
|
|
79
|
-
"ora": "^9.0.0"
|
|
80
|
-
},
|
|
81
|
-
"lint-staged": {
|
|
82
|
-
"*.{ts,tsx}": [
|
|
83
|
-
"eslint --fix",
|
|
84
|
-
"prettier --write"
|
|
85
|
-
],
|
|
86
|
-
"*.{js,jsx}": [
|
|
87
|
-
"eslint --fix",
|
|
88
|
-
"prettier --write"
|
|
89
|
-
],
|
|
90
|
-
"*.{json,md,yml,yaml}": [
|
|
91
|
-
"prettier --write"
|
|
92
|
-
]
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "trinity-method-sdk",
|
|
3
|
+
"version": "2.0.8",
|
|
4
|
+
"description": "Trinity Method SDK - Investigation-first development methodology for any project",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/",
|
|
10
|
+
"!dist/**/*.map",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"CHANGELOG.md"
|
|
14
|
+
],
|
|
15
|
+
"bin": {
|
|
16
|
+
"trinity": "./dist/cli/index.js"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"clean": "rimraf dist",
|
|
20
|
+
"prebuild": "npm run clean",
|
|
21
|
+
"build": "tsc && npm run copy-templates",
|
|
22
|
+
"copy-templates": "node -e \"const fs=require('fs-extra'); fs.copySync('src/templates', 'dist/templates');\"",
|
|
23
|
+
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
|
|
24
|
+
"test:unit": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects unit",
|
|
25
|
+
"test:integration": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects integration",
|
|
26
|
+
"test:e2e": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects e2e --passWithNoTests",
|
|
27
|
+
"test:performance": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects performance --passWithNoTests",
|
|
28
|
+
"test:coverage": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --coverage",
|
|
29
|
+
"test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch",
|
|
30
|
+
"lint": "eslint src/ tests/",
|
|
31
|
+
"lint:fix": "eslint src/ tests/ --fix",
|
|
32
|
+
"format": "prettier --write src/ tests/",
|
|
33
|
+
"format:check": "prettier --check src/ tests/",
|
|
34
|
+
"type-check": "tsc --noEmit",
|
|
35
|
+
"docs:generate": "typedoc --out docs src/",
|
|
36
|
+
"pretest": "npm run type-check",
|
|
37
|
+
"prepublishOnly": "npm run build && npm run test",
|
|
38
|
+
"prepare": "husky"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"trinity-method",
|
|
42
|
+
"development-methodology",
|
|
43
|
+
"investigation-first",
|
|
44
|
+
"ai-coding",
|
|
45
|
+
"claude-code",
|
|
46
|
+
"cursor",
|
|
47
|
+
"copilot"
|
|
48
|
+
],
|
|
49
|
+
"author": "Trinity Method",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@eslint/js": "^9.39.2",
|
|
53
|
+
"@jest/globals": "^30.2.0",
|
|
54
|
+
"@types/fs-extra": "^11.0.4",
|
|
55
|
+
"@types/glob": "^8.1.0",
|
|
56
|
+
"@types/inquirer": "^9.0.9",
|
|
57
|
+
"@types/jest": "^30.0.0",
|
|
58
|
+
"@types/node": "^25.0.3",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
60
|
+
"@typescript-eslint/parser": "^8.50.0",
|
|
61
|
+
"eslint": "^9.39.2",
|
|
62
|
+
"eslint-plugin-jest": "^29.5.0",
|
|
63
|
+
"husky": "^9.1.7",
|
|
64
|
+
"jest": "^30.2.0",
|
|
65
|
+
"jest-mock": "^30.2.0",
|
|
66
|
+
"lint-staged": "^16.2.7",
|
|
67
|
+
"prettier": "^3.0.0",
|
|
68
|
+
"rimraf": "^6.0.1",
|
|
69
|
+
"ts-jest": "^29.1.0",
|
|
70
|
+
"typedoc": "^0.28.15",
|
|
71
|
+
"typescript": "^5.9.3"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"chalk": "^5.3.0",
|
|
75
|
+
"commander": "^14.0.2",
|
|
76
|
+
"fs-extra": "^11.3.3",
|
|
77
|
+
"glob": "^13.0.0",
|
|
78
|
+
"inquirer": "^13.1.0",
|
|
79
|
+
"ora": "^9.0.0"
|
|
80
|
+
},
|
|
81
|
+
"lint-staged": {
|
|
82
|
+
"*.{ts,tsx}": [
|
|
83
|
+
"eslint --fix",
|
|
84
|
+
"prettier --write"
|
|
85
|
+
],
|
|
86
|
+
"*.{js,jsx}": [
|
|
87
|
+
"eslint --fix",
|
|
88
|
+
"prettier --write"
|
|
89
|
+
],
|
|
90
|
+
"*.{json,md,yml,yaml}": [
|
|
91
|
+
"prettier --write"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
}
|