-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
{
"name": "agentic-office-ui",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "pnpm --filter=demo dev",
"dev:pptx-lab": "pnpm --filter=pptx-playback-lab dev",
"build": "pnpm typecheck && pnpm -r build",
"build:pptx": "pnpm --filter=@arcships/pptx-core build && pnpm --filter=@arcships/vue-pptx build && pnpm --filter=pptx-playback-lab build:lab && pnpm --filter=demo build",
"typecheck": "pnpm -r typecheck",
"typecheck:pptx": "pnpm --filter=@arcships/pptx-core typecheck && pnpm --filter=@arcships/vue-pptx typecheck && pnpm --filter=pptx-playback-lab typecheck && pnpm --filter=demo typecheck",
"test": "node scripts/ci/run-suite.mjs test",
"test:pptx": "pnpm build:pptx && node scripts/ci/verify-pptx-development.mjs && node --test --test-concurrency=1 tests/unit/pptx-core.test.mjs tests/component/pptx-preview.test.mjs && node scripts/ci/verify-pptx-consumer.mjs",
"test:pptx:headless": "python3 scripts/ci/verify-pptx-headless-browser.py",
"test:pptx:blackbox": "node scripts/ci/verify-pptx-playback-browser.mjs",
"capture:pptx-baselines": "python3 scripts/fixtures/capture-pptx-formal-baselines.py",
"test:unit": "node scripts/ci/run-suite.mjs unit",
"test:component": "node scripts/ci/run-suite.mjs component",
"test:blackbox": "node scripts/ci/run-suite.mjs blackbox",
"test:stress": "node scripts/ci/run-suite.mjs stress",
"test:performance": "node scripts/ci/run-suite.mjs performance",
"test:matrix": "node scripts/ci/run-suite.mjs matrix",
"test:e2e": "node scripts/ci/run-suite.mjs blackbox",
"test:consumer": "node scripts/ci/run-suite.mjs consumer",
"test:pack": "node scripts/ci/run-suite.mjs consumer",
"test:docs": "node scripts/ci/run-suite.mjs docs",
"test:release": "node scripts/ci/run-suite.mjs release",
"ci:self-test": "node scripts/ci/verify-failure-propagation.mjs",
"check": "node scripts/ci/run-suite.mjs check"
},
"devDependencies": {
"@arcships/office-runtime": "workspace:*"
},
"packageManager": "pnpm@9.0.6",
"pnpm": {
"patchedDependencies": {
"@aiden0z/pptx-renderer@1.2.4": "patches/@aiden0z__pptx-renderer@1.2.4.patch"
}
}
}