claude-presentation-master 1.0.1 → 2.1.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/LICENSE +1 -1
- package/README.md +383 -603
- package/assets/presentation-engine.css +410 -0
- package/assets/presentation-knowledge.yaml +707 -0
- package/bin/cli.js +57 -21
- package/dist/index.d.mts +935 -81
- package/dist/index.d.ts +935 -81
- package/dist/index.js +8923 -1410
- package/dist/index.mjs +8915 -1410
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-presentation-master",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "2.1.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,16 +12,19 @@
|
|
|
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": "
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest",
|
|
17
|
+
"test:visual": "vitest run --testPathPattern=visual",
|
|
18
|
+
"test:coverage": "vitest run --coverage",
|
|
19
|
+
"test:qa": "vitest run src/__tests__/PPTXValidator.test.ts",
|
|
19
20
|
"lint": "eslint src/**/*.ts",
|
|
20
21
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
21
22
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
23
|
"typecheck": "tsc --noEmit",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
24
|
+
"sync-knowledge": "bash scripts/sync-knowledge.sh",
|
|
25
|
+
"prepublishOnly": "npm run sync-knowledge && npm run build && npm run test:qa",
|
|
26
|
+
"qa": "node bin/cli.js validate",
|
|
27
|
+
"qa:strict": "node bin/cli.js validate --threshold 95"
|
|
25
28
|
},
|
|
26
29
|
"keywords": [
|
|
27
30
|
"presentation",
|
|
@@ -74,19 +77,17 @@
|
|
|
74
77
|
"devDependencies": {
|
|
75
78
|
"@types/color": "^3.0.6",
|
|
76
79
|
"@types/fs-extra": "^11.0.4",
|
|
77
|
-
"@types/jest": "^29.5.11",
|
|
78
80
|
"@types/js-yaml": "^4.0.9",
|
|
79
81
|
"@types/lodash": "^4.14.202",
|
|
80
82
|
"@types/node": "^20.10.0",
|
|
81
83
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
82
84
|
"@typescript-eslint/parser": "^6.15.0",
|
|
85
|
+
"@vitest/coverage-v8": "^1.0.0",
|
|
83
86
|
"eslint": "^8.56.0",
|
|
84
|
-
"jest": "^29.7.0",
|
|
85
|
-
"jest-image-snapshot": "^6.4.0",
|
|
86
87
|
"prettier": "^3.1.1",
|
|
87
|
-
"ts-jest": "^29.1.1",
|
|
88
88
|
"tsup": "^8.0.1",
|
|
89
|
-
"typescript": "^5.3.3"
|
|
89
|
+
"typescript": "^5.3.3",
|
|
90
|
+
"vitest": "^1.0.0"
|
|
90
91
|
},
|
|
91
92
|
"peerDependencies": {
|
|
92
93
|
"typescript": ">=5.0.0"
|