-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.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
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
{
"name": "reveal.js-verticator",
"version": "1.3.4",
"description": "A plugin for Reveal.js that adds indicators to show the amount of slides in a vertical stack",
"keywords": [
"reveal",
"reveal.js",
"reveal-plugin",
"plugin",
"vertical bullets",
"fullPage.js"
],
"homepage": "https://github.com/martinomagnifico/reveal.js-verticator",
"license": "MIT",
"author": {
"name": "Martijn De Jongh (Martino)",
"email": "martijn.de.jongh@gmail.com",
"web": "https://martinomagnifico.github.io",
"url": "https://martinomagnifico.github.io",
"username": "martinomagnifico"
},
"repository": {
"type": "git",
"url": "git://github.com/martinomagnifico/reveal.js-verticator.git"
},
"type": "module",
"main": "./plugin/verticator/verticator.js",
"module": "./plugin/verticator/verticator.mjs",
"exports": {
".": {
"import": "./plugin/verticator/verticator.mjs",
"require": "./plugin/verticator/verticator.js"
},
"./plugin/verticator/verticator.esm.js": "./plugin/verticator/verticator.mjs",
"./plugin/verticator/verticator.css": "./plugin/verticator/verticator.css",
"./verticator.css": "./plugin/verticator/verticator.css"
},
"style": "./plugin/verticator/verticator.css",
"files": [
"plugin/verticator",
"CHANGELOG.md"
],
"scripts": {
"start": "npm run dev",
"copy-reveal": "node scripts/copy-reveal.mjs",
"copy-plugin": "node scripts/copy-plugin.mjs",
"dev": "vite",
"prebuild": "rimraf demo plugin",
"build-plugin": "vite build -c vite.lib.config.ts",
"build-demo": "vite build -c vite.config.ts",
"build": "npm run build-plugin && npm run build-demo && npm run copy-reveal && npm run copy-plugin",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"preview": "npm run build && vite preview",
"ci": "biome ci ."
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^25.9.3",
"@types/reveal.js": "^5.2.2",
"@vituum/vite-plugin-pug": "^2.0.1",
"fs-extra": "^11.3.5",
"reveal.js": ">=6.0.0",
"reveal.js-plugintoolkit": "^1.2.1",
"rimraf": "^6.1.3",
"sass": "^1.101.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vituum": "^2.0.2"
}
}