-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "vite-plugin-mdebug",
"version": "1.0.5",
"description": "vite plugin mDebug",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"type": "module",
"scripts": {
"clean": "rimraf dist",
"dev": "tsup src/index.ts --dts --format cjs,esm --watch",
"build": "pnpm run clean && tsup src/index.ts --dts --format cjs,esm",
"prepare": "husky install",
"log": "npx conventional-changelog --config ./node_modules/@commitlint/cli -i CHANGELOG.md -s -r 0",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postrelease": "git push && git push --tags",
"prepublish": "pnpm run build",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS-mark/vite-plugin-mdebug.git"
},
"keywords": [
"vite",
"mdebug"
],
"author": "JS-mark",
"license": "MIT",
"bugs": {
"url": "https://github.com/JS-mark/vite-plugin-mdebug/issues"
},
"homepage": "https://github.com/JS-mark/vite-plugin-mdebug#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.9.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.14.0",
"@antfu/eslint-config": "^3.8.0",
"husky": "^9.1.6 ",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"mdebug": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"pnpm lint:fix"
]
}
}