-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.46 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
34
{
"name": "pptkit",
"version": "0.1.0",
"private": true,
"description": "Monorepo workspace for the PPTKit presentation toolkit.",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "node ./scripts/dev.mjs",
"build": "pnpm -r build",
"build:browser": "pnpm --filter @pptkit/core --filter @pptkit/layout --filter @pptkit/pptx-exporter --filter @pptkit/svg-renderer build",
"lint": "node ./scripts/lint.mjs && node ./scripts/check-boundaries.mjs && node ./scripts/check-docs.mjs",
"docs:check": "node ./scripts/check-docs.mjs",
"test": "node --test scripts/release.test.mjs && pnpm -r test && pnpm test:visual && pnpm test:browser-bundles && pnpm test:chart-parity",
"test:browser-bundles": "pnpm run build:browser && node --test scripts/browser-bundles.test.mjs",
"test:chart-parity": "pnpm run build:browser && node --test scripts/chart-parity.test.mjs",
"test:visual": "pnpm --filter @pptkit/svg-renderer build && playwright test --config packages/svg-renderer/playwright.config.mjs",
"release:npm": "node ./scripts/release.mjs",
"typecheck": "tsc -b --pretty false",
"clean": "node ./scripts/clean.mjs",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/node": "^24.3.0",
"husky": "^9.1.7",
"rollup": "^4.62.2",
"typescript": "^5.9.2"
}
}