-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
53
54
{
"name": "slidev-addon-naive",
"version": "0.8.2",
"description": "An addon that brings Naive UI components to Slidev.",
"keywords": [
"naive-ui",
"slideshow",
"slidev",
"slidev-addon",
"vue"
],
"homepage": "https://github.com/sghuang19/slidev-addon-naive#readme",
"bugs": {
"url": "https://github.com/sghuang19/slidev-addon-naive/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sghuang19/slidev-addon-naive.git"
},
"license": "MIT",
"author": "Samuel Huang <hi@sghuang.com> (https://sghuang.com)",
"type": "module",
"main": "src/index.ts",
"files": [
"setup/main.ts",
"src/",
"slides.md",
"uno.config.ts"
],
"scripts": {
"dev": "slidev",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"sort": "bunx sort-package-json"
},
"dependencies": {
"naive-ui": "^2.41.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@slidev/cli": "^51.1.0",
"@slidev/theme-default": "^0.25.0",
"@slidev/types": "^51.1.0",
"eslint": "^9.20.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript-eslint": "^8.24.0"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=22.6.0"
}
}