-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.75 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
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
{
"name": "func2md",
"type": "module",
"version": "0.1.1",
"description": "A Vite plugin to generate VitePress documentation from JSDoc and TypeScript types",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"func2md": "./bin/func2md.js"
},
"files": [
"dist",
"bin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsdown 2>&1 | grep -v '\\[38;5;2' | grep -v 'MISSING_EXPORT' | grep -v 'Missing export' | grep -v 'IMPORT_IS_UNDEFINED' | grep -v 'will always be undefined' | grep -v '^\\s*$'",
"dev": "tsdown --watch",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"example:dev": "cd example && npm run dev",
"example:build": "cd example && npm run build"
},
"keywords": [
"vite",
"vitepress",
"documentation",
"jsdoc",
"typescript"
],
"author": "Azir-11",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vectutil/func2md.git"
},
"bugs": {
"url": "https://github.com/Vectutil/func2md/issues"
},
"homepage": "https://github.com/Vectutil/func2md#readme",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"vite": ">=5"
},
"optionalDependencies": {
"vite": ">=5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^22.10.10",
"postcss": "^8.5.6",
"tsdown": "0.20.0-beta.3",
"typescript": "^5.9.2",
"vite": "^6.0.5",
"vitepress": "^1.5.0",
"vitest": "^3.0.4"
},
"dependencies": {
"jsdoc": "^4.0.4"
}
}