-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "vite-plugin-static-md",
"version": "0.4.5",
"author": "Andrew Chang-DeWitt",
"license": "MIT",
"homepage": "https://github.com/andrew-chang-dewitt/vite-plugin-static-md#readme",
"bugs": {
"url": "https://github.com/andrew-chang-dewitt/vite-plugin-static-md/issues"
},
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "cd example && npm run dev",
"check": "tsc --noEmit",
"test": "vitest",
"test:once": "vitest run",
"coverage": "vitest run --coverage",
"prebuild": "rm -rf dist && npm run test:once",
"build": "tsc",
"prerelease": "npm run build",
"release": "commit-and-tag-version",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"prettier": {
"semi": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"vite": "^5.4.0 || ^6.0.0"
},
"dependencies": {
"gray-matter": "^4.0.3",
"jsdom": "^25.0.1",
"marked": "^15.0.6",
"marked-directive": "^1.0.7",
"yaml": "^2.7.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.0.4",
"commit-and-tag-version": "^12.5.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}