-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "vitepress-theme-api",
"private": false,
"description": "Vitepress theme for API documentation",
"version": "0.1.6",
"license": "MIT",
"author": "LogicSpark <[email protected]>",
"homepage": "https://logicspark.com",
"url": "https://github.com/logicspark/vitepress-theme-api",
"repository": {
"type": "git",
"url": "git+https://github.com/logicspark/vitepress-theme-api.git"
},
"bugs": {
"url": "https://github.com/logicspark/vitepress-theme-api/issues"
},
"keywords": [
"header",
"footer",
"vuejs",
"vue",
"vue3"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/vitepress-theme-api.umd.js",
"module": "./dist/vitepress-theme-api.es.js",
"exports": {
".": {
"import": "./dist/vitepress-theme-api.es.js",
"require": "./dist/vitepress-theme-api.umd.js"
},
"./dist/index.css": "./dist/index.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/components dist/types",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"gray-matter": "^4.0.3",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/node": "^18.18.4",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/test-utils": "^2.4.1",
"jsdom": "^21.1.2",
"typescript": "^4.9.5",
"vite": "^4.4.11",
"vitest": "^0.30.1",
"vue-tsc": "^1.8.18"
},
"engines": {
"node": ">=18 <19"
},
"directories": {
"example": "example"
}
}