-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.53 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.53 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
{
"name": "javascript-note",
"type": "module",
"private": true,
"scripts": {
"postinstall": "bun x playwright-core install chromium",
"build": "cross-env NODE_OPTIONS='--openssl-legacy-provider --max_old_space_size=8192' slidev build --timeout 60000",
"build:netlify": "cross-env NODE_ENV=production NODE_OPTIONS='--openssl-legacy-provider --max_old_space_size=4096' slidev build --timeout 60000",
"dev": "nodemon -e 'md,js,mjs,cjs,json' -w '../../packages/slidev/dist/*.mjs' --exec \"slidev ./slides.md --open=false --log=info --inspect\"",
"export": "slidev export",
"export:pdf": "bun run export -- --timeout 120000 --with-toc --output ./_export/javascript-note.pdf",
"export:pptx": "bun run export -- --timeout 120000 --with-clicks false --format pptx --output ./_export/javascript-note.pptx",
"format": "prettier --write ."
},
"dependencies": {
"@slidev/cli": "52.2.5",
"@slidev/client": "^52.14.1",
"@slidev/theme-default": "latest",
"@vueuse/core": "^14.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"vue": "^3.5.29"
},
"devDependencies": {
"@babel/standalone": "^7.29.1",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/mdi": "^1.2.3",
"@slidev/types": "51.0.2",
"@vue/compiler-sfc": "^3.5.29",
"cross-env": "^10.1.0",
"markdown-it-magic-link": "^0.1.4",
"nodemon": "^3.1.14",
"playwright-chromium": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-slidev": "^1.0.5"
},
"license": "MIT",
"packageManager": "bun@1.3.10"
}