-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.82 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@pie-qti/example",
"version": "0.1.0",
"description": "QTI (2.x and 3.0) Player Example & Demo Application",
"type": "module",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"typecheck": "tsc --noEmit",
"test": "echo 'E2E tests run separately via test:e2e'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:a11y": "playwright test tests/playwright/component-fixtures-a11y.pw.ts",
"test:a11y:ui": "playwright test tests/playwright/component-fixtures-a11y.pw.ts --ui"
},
"dependencies": {
"@acme/likert-scale-plugin": "workspace:*",
"@pie-qti/logger": "workspace:*",
"@pie-qti/ims-cp-browser": "workspace:*",
"@pie-qti/ims-cp-core": "workspace:*",
"@pie-qti/assessment-player": "workspace:*",
"@pie-qti/default-components": "workspace:*",
"@pie-qti/i18n": "workspace:*",
"@pie-qti/item-player": "workspace:*",
"@pie-qti/player-elements": "workspace:*",
"@pie-qti/qti-common": "workspace:*",
"@pie-qti/typeset-katex": "workspace:*",
"@pie-qti/web-component-loaders": "workspace:*",
"@tiptap/core": "^3.14.0",
"@tiptap/extension-code-block": "^3.14.0",
"@tiptap/extension-code-block-lowlight": "^3.14.0",
"@tiptap/extension-document": "^3.14.0",
"@tiptap/extension-history": "^3.14.0",
"@tiptap/extension-text": "^3.14.0",
"@tiptap/pm": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"lowlight": "^3.3.0",
"unzipper": "^0.12.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@axe-core/playwright": "^4.11.0",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.3",
"@types/unzipper": "^0.10.11",
"@types/xml2js": "^0.4.14",
"axe-core": "^4.11.0",
"daisyui": "^5.5.14",
"js-yaml": "^4.1.0",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.0"
},
"engines": {
"node": ">=20.19.0"
},
"peerDependencies": {
"@pie-framework/pie-assessment-player": "^1.0.0",
"@pie-framework/pie-iife-player": "^1.0.0",
"@pie-framework/pie-esm-player": "^1.0.0"
},
"peerDependenciesMeta": {
"@pie-framework/pie-assessment-player": {
"optional": true
},
"@pie-framework/pie-iife-player": {
"optional": true
},
"@pie-framework/pie-esm-player": {
"optional": true
}
},
"license": "MIT"
}