-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "prettier-plugin-slidev",
"type": "module",
"version": "1.0.5",
"description": "A prettier plugin for Slidev",
"author": "_Kerman <kermanx@qq.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://sli.dev",
"repository": {
"type": "git",
"url": "https://github.com/slidevjs/prettier-plugin"
},
"bugs": "https://github.com/slidevjs/prettier-plugin/issues",
"keywords": [
"slidev",
"prettier",
"prettier-plugin",
"plugin",
"formatter",
"format"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"typecheck": "vue-tsc --noEmit",
"release": "bumpp package.json"
},
"peerDependencies": {
"prettier": "^3.2.4"
},
"dependencies": {
"@slidev/parser": "^0.47.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@antfu/ni": "^0.21.12",
"@slidev/types": "^0.47.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.15",
"@vitest/coverage-istanbul": "^1.2.2",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix --cache"
]
}
}