claude-presentation-master 1.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/package.json ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "claude-presentation-master",
3
+ "version": "1.0.0",
4
+ "description": "Generate world-class presentations using expert methodologies from Duarte, Reynolds, Gallo, and Anderson. Enforces rigorous quality standards through real visual validation.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "claude-presentation-master": "./bin/cli.js",
10
+ "cpm": "./bin/cli.js"
11
+ },
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
14
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
15
+ "test": "jest --passWithNoTests",
16
+ "test:watch": "jest --watch",
17
+ "test:visual": "jest tests/visual",
18
+ "test:coverage": "jest --coverage",
19
+ "lint": "eslint src/**/*.ts",
20
+ "lint:fix": "eslint src/**/*.ts --fix",
21
+ "format": "prettier --write \"src/**/*.ts\"",
22
+ "typecheck": "tsc --noEmit",
23
+ "prepublishOnly": "npm run build && npm test",
24
+ "qa": "node bin/cli.js validate"
25
+ },
26
+ "keywords": [
27
+ "presentation",
28
+ "slides",
29
+ "powerpoint",
30
+ "pptx",
31
+ "reveal.js",
32
+ "html-presentation",
33
+ "duarte",
34
+ "reynolds",
35
+ "gallo",
36
+ "ted-talk",
37
+ "keynote",
38
+ "business-presentation",
39
+ "qa-validation",
40
+ "expert-methodologies",
41
+ "visual-regression",
42
+ "accessibility"
43
+ ],
44
+ "author": "Stuart Kerr <stuart@isovision.ai>",
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/Stuinfla/claude-presentation-master"
49
+ },
50
+ "homepage": "https://github.com/Stuinfla/claude-presentation-master#readme",
51
+ "bugs": {
52
+ "url": "https://github.com/Stuinfla/claude-presentation-master/issues"
53
+ },
54
+ "files": [
55
+ "dist",
56
+ "bin",
57
+ "assets"
58
+ ],
59
+ "engines": {
60
+ "node": ">=18.0.0"
61
+ },
62
+ "dependencies": {
63
+ "chalk": "^5.3.0",
64
+ "color": "^4.2.3",
65
+ "handlebars": "^4.7.8",
66
+ "lodash": "^4.17.21",
67
+ "marked": "^11.0.0",
68
+ "natural": "^6.10.0",
69
+ "playwright": "^1.40.0",
70
+ "pptxgenjs": "^3.12.0",
71
+ "wcag-contrast": "^3.0.0",
72
+ "yaml": "^2.3.4"
73
+ },
74
+ "devDependencies": {
75
+ "@types/color": "^3.0.6",
76
+ "@types/fs-extra": "^11.0.4",
77
+ "@types/jest": "^29.5.11",
78
+ "@types/js-yaml": "^4.0.9",
79
+ "@types/lodash": "^4.14.202",
80
+ "@types/node": "^20.10.0",
81
+ "@typescript-eslint/eslint-plugin": "^6.15.0",
82
+ "@typescript-eslint/parser": "^6.15.0",
83
+ "eslint": "^8.56.0",
84
+ "jest": "^29.7.0",
85
+ "jest-image-snapshot": "^6.4.0",
86
+ "prettier": "^3.1.1",
87
+ "ts-jest": "^29.1.1",
88
+ "tsup": "^8.0.1",
89
+ "typescript": "^5.3.3"
90
+ },
91
+ "peerDependencies": {
92
+ "typescript": ">=5.0.0"
93
+ },
94
+ "peerDependenciesMeta": {
95
+ "typescript": {
96
+ "optional": true
97
+ }
98
+ }
99
+ }