-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.68 KB
/
package.json
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
{
"name": "@public-ui/slidev",
"version": "2.0.0-rc.10",
"license": "EUPL-1.2",
"homepage": "https://public-ui.github.io",
"repository": "https://github.com/public-ui/kolibri",
"bugs": {
"url": "https://github.com/public-ui/kolibri/issues",
"email": "[email protected]"
},
"author": {
"name": "Informationstechnikzentrum Bund",
"email": "[email protected]"
},
"scripts": {
"build": "rimraf dist && slidev build --base /presentation && node scripts/fix-underline.js && node scripts/copy-assets-images.js && npm run build:pdf",
"build:pdf": "slidev export --with-clicks && mv slides-export.pdf presentation.pdf",
"dev": "slidev --open",
"start": "npm run dev",
"export": "slidev export",
"postinstall": "npm-run-all postinstall:*",
"postinstall:components-assets": "cpy \"node_modules/@public-ui/components/assets/**/*\" assets --dot",
"postinstall:themes-assets": "cpy \"node_modules/@public-ui/themes/assets/**/*\" assets --dot",
"prepack": "npm run build",
"update": "ncu -t minor -u && ncu"
},
"dependencies": {
"@public-oss/kolibri-themes": "0.0.3",
"@public-ui/components": "2.0.0-rc.10",
"@public-ui/themes": "2.0.0-rc.10",
"@public-ui/vue": "2.0.0-rc.10",
"@slidev/theme-default": "0.21.2",
"@slidev/theme-seriph": "0.21.3"
},
"devDependencies": {
"@slidev/cli": "0.43.15",
"cpy-cli": "5.0.0",
"npm-check-updates": "16.14.6",
"npm-run-all": "4.1.5",
"playwright-chromium": "1.39.0",
"prettier": "3.1.0",
"rimraf": "3.0.2",
"ts-prune": "0.10.3"
},
"files": [
"dist",
"presentation.pdf"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}