-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"type": "module",
"private": true,
"description": "Slides & code for my talks",
"author": "Lei Zhang",
"license": "MIT",
"homepage": "https://github.com/PassionZale/talks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PassionZale/talks.git"
},
"bugs": {
"url": "https://github.com/PassionZale/talks/issues"
},
"keywords": [],
"scripts": {
"build": "rimraf dist && pnpm -r run build",
"dev": "esno scripts/picker.ts dev --open",
"lint": "eslint . --fix",
"redirects": "esno scripts/redirects.ts",
"release": "vercel --prod"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@iconify/json": "^2.2.274",
"@slidev/cli": "^0.50.0-beta.7",
"@slidev/theme-default": "^0.25.0",
"@slidev/theme-seriph": "^0.25.0",
"@types/markdown-it": "^13.0.9",
"@types/node": "^20.17.6",
"@types/prompts": "^2.4.9",
"eslint": "^8.57.1",
"esno": "^4.8.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"playwright-chromium": "^1.49.0",
"postcss": "^8.4.49",
"prompts": "^2.4.2",
"rimraf": "^5.0.10",
"typescript": "^5.6.3"
}
}