-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.9 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.9 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
{
"name": "slide-quiz",
"version": "0.5.2",
"description": "Live audience quizzes for Reveal.js and Slidev presentations, powered by AnyCable",
"type": "module",
"workspaces": [
"packages/*"
],
"main": "dist/slide-quiz.umd.js",
"module": "dist/slide-quiz.js",
"types": "dist/src/index.d.ts",
"style": "dist/slide-quiz.css",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/slide-quiz.js",
"require": "./dist/slide-quiz.umd.js"
},
"./style.css": "./dist/slide-quiz.css",
"./participant": {
"types": "./dist/participant/index.d.ts",
"import": "./dist/participant.js",
"require": "./dist/participant.umd.js"
},
"./participant.css": "./dist/participant.css",
"./components.css": "./src/slide-quiz-components.css"
},
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "https://github.com/anycable/slide-quiz"
},
"files": [
"dist",
"functions",
"src/slide-quiz-components.css"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build && npm run build:participant && tsc --emitDeclarationOnly",
"build:participant": "vite build --config vite.config.participant.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"reveal.js": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"reveal.js": {
"optional": true
}
},
"dependencies": {
"@anycable/web": "^1.1.0",
"qrcode": "^1.5.4",
"nanostores": "^0.11.0",
"valibot": "^1.0.0"
},
"devDependencies": {
"@types/qrcode": "^1.5.5",
"jsdom": "^28.1.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"license": "MIT",
"keywords": [
"reveal.js",
"reveal.js-plugin",
"slidev",
"slidev-addon",
"quiz",
"slide-quiz",
"audience-interaction",
"anycable",
"websocket"
]
}