-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "pptkit-presentation",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "End-user presentation workflows, preview application, and Agent Skill powered by PPTKit.",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm -r build",
"typecheck": "tsc -b --pretty false",
"lint": "node scripts/check-boundaries.mjs && node scripts/check-versions.mjs && node scripts/check-docs.mjs && node scripts/check-plugin.mjs",
"test": "pnpm --filter presentation-workflow test && pnpm test:preview && pnpm test:skill && pnpm test:plugin && node --test scripts/release.test.mjs",
"test:preview": "pnpm --filter presentation-preview test",
"test:skill": "node --test scripts/pptkit-skill.test.mjs",
"test:plugin": "pnpm --filter dsh-plugin-pptkit-presentation test",
"pack:check": "npm pack --dry-run --json ./packages/presentation-workflow --cache .npm-cache",
"release:npm": "node scripts/release.mjs",
"clean": "node scripts/clean.mjs"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@types/node": "24.3.0",
"mammoth": "1.9.1",
"officeparser": "7.1.0",
"pdfjs-dist": "4.10.38",
"tsx": "4.23.0",
"typescript": "5.9.2",
"xlsx": "0.18.5"
}
}