-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
103 lines (103 loc) · 3.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vite-plugin-md",
"version": "0.23.0",
"description": "Markdown for Vite",
"type": "module",
"packageManager": "[email protected]",
"keywords": [
"vite",
"vite-plugin",
"markdown-it"
],
"homepage": "https://github.com/antfu/vite-plugin-md",
"bugs": "https://github.com/antfu/vite-plugin-md/issues",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-md"
},
"funding": "https://github.com/sponsors/antfu",
"license": "MIT",
"author": "Anthony Fu <[email protected]>",
"contributors": [
"Ken Snyder <[email protected]>"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean ",
"watch": "tsup src/index.ts --dts --format cjs,esm --watch",
"dev": "npm run build -- --watch",
"example:build": "cp README.md example/README.md && npm -C example run build",
"example:dev": "cp README.md example/README.md && npm -C example run dev",
"lint": "run-p lint:*",
"lint:src": "eslint src/**/*.ts --fix",
"lint:test": "eslint test/**/*.ts --fix",
"lint:tsc": "tsc --noEmit",
"lint:node": "tsup src/index.ts --format=esm && node dist/index.js",
"audit:fix": "pnpm audit --fix && pnpm install",
"release": "run-s audit:fix lint release:bumpp",
"release:bumpp": "bumpp",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:update": "vitest -u",
"test:component": "npx cypress open-ct -p 4000"
},
"dependencies": {
"@yankeeinlondon/builder-api": "^1.4.1",
"@yankeeinlondon/gray-matter": "^6.1.1",
"@yankeeinlondon/happy-wrapper": "^3.1.0",
"@yankeeinlondon/meta-builder": "^1.4.0",
"inferred-types": "^0.37.6",
"markdown-it": "^13.0.2",
"source-map-js": "^1.0.2"
},
"peerDependencies": {
"@vitejs/plugin-vue": ">=2.3.4",
"vite": "^5.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.0",
"@antfu/ni": "^0.21.10",
"@antfu/utils": "^0.7.6",
"@type-challenges/utils": "^0.1.1",
"@types/markdown-it": "^13.0.7",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"@vue/test-utils": "^2.4.2",
"@vueuse/core": "^10.6.1",
"@yankeeinlondon/code-builder": "^1.2.1",
"@yankeeinlondon/link-builder": "^1.2.1",
"bumpp": "^9.2.0",
"callsites": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"fp-ts": "^2.16.1",
"happy-dom": "^12.10.3",
"native-dash": "^1.25.0",
"npm-run-all": "^4.1.5",
"pathe": "^1.1.1",
"rollup": "^4.5.2",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vitest": "^0.34.6",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
}
}