claude-presentation-master 4.4.1 → 6.0.0
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/bin/cli.js +2 -2
- package/dist/index.d.mts +311 -158
- package/dist/index.d.ts +311 -158
- package/dist/index.js +846 -622
- package/dist/index.mjs +843 -619
- package/package.json +12 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-presentation-master",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Generate world-class presentations using expert methodologies from Duarte, Reynolds, Gallo, and Anderson. Enforces rigorous quality standards through real visual validation.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -12,19 +12,16 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
14
14
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
15
|
-
"test": "
|
|
16
|
-
"test:watch": "
|
|
17
|
-
"test:visual": "
|
|
18
|
-
"test:coverage": "
|
|
19
|
-
"test:qa": "vitest run src/__tests__/PPTXValidator.test.ts",
|
|
15
|
+
"test": "jest --passWithNoTests",
|
|
16
|
+
"test:watch": "jest --watch",
|
|
17
|
+
"test:visual": "jest tests/visual",
|
|
18
|
+
"test:coverage": "jest --coverage",
|
|
20
19
|
"lint": "eslint src/**/*.ts",
|
|
21
20
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
22
21
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
23
22
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"qa": "node bin/cli.js validate",
|
|
27
|
-
"qa:strict": "node bin/cli.js validate --threshold 95"
|
|
23
|
+
"prepublishOnly": "npm run build",
|
|
24
|
+
"qa": "node bin/cli.js validate"
|
|
28
25
|
},
|
|
29
26
|
"keywords": [
|
|
30
27
|
"presentation",
|
|
@@ -63,9 +60,7 @@
|
|
|
63
60
|
"node": ">=18.0.0"
|
|
64
61
|
},
|
|
65
62
|
"dependencies": {
|
|
66
|
-
"@ruvector/ruvllm": "^0.2.3",
|
|
67
63
|
"chalk": "^5.3.0",
|
|
68
|
-
"claude-flow": "^2.7.47",
|
|
69
64
|
"color": "^4.2.3",
|
|
70
65
|
"handlebars": "^4.7.8",
|
|
71
66
|
"lodash": "^4.17.21",
|
|
@@ -73,28 +68,25 @@
|
|
|
73
68
|
"natural": "^6.10.0",
|
|
74
69
|
"playwright": "^1.40.0",
|
|
75
70
|
"pptxgenjs": "^3.12.0",
|
|
76
|
-
"ruvector": "^0.1.35",
|
|
77
|
-
"sharp": "^0.34.5",
|
|
78
71
|
"wcag-contrast": "^3.0.0",
|
|
79
72
|
"yaml": "^2.3.4"
|
|
80
73
|
},
|
|
81
74
|
"devDependencies": {
|
|
82
75
|
"@types/color": "^3.0.6",
|
|
83
76
|
"@types/fs-extra": "^11.0.4",
|
|
77
|
+
"@types/jest": "^29.5.11",
|
|
84
78
|
"@types/js-yaml": "^4.0.9",
|
|
85
79
|
"@types/lodash": "^4.14.202",
|
|
86
80
|
"@types/node": "^20.10.0",
|
|
87
|
-
"@types/sharp": "^0.31.1",
|
|
88
81
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
89
82
|
"@typescript-eslint/parser": "^6.15.0",
|
|
90
|
-
"@vitest/coverage-v8": "^1.0.0",
|
|
91
|
-
"agentic-flow": "^2.0.1-alpha.5",
|
|
92
83
|
"eslint": "^8.56.0",
|
|
84
|
+
"jest": "^29.7.0",
|
|
85
|
+
"jest-image-snapshot": "^6.4.0",
|
|
93
86
|
"prettier": "^3.1.1",
|
|
94
|
-
"
|
|
87
|
+
"ts-jest": "^29.1.1",
|
|
95
88
|
"tsup": "^8.0.1",
|
|
96
|
-
"typescript": "^5.3.3"
|
|
97
|
-
"vitest": "^1.0.0"
|
|
89
|
+
"typescript": "^5.3.3"
|
|
98
90
|
},
|
|
99
91
|
"peerDependencies": {
|
|
100
92
|
"typescript": ">=5.0.0"
|