-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "vite-plugin-auto-mpa-html",
"version": "1.3.1",
"description": "A file directory-based automated multi-page Vite plugin that supports HTML templates using Handlebars.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "npm run build && vitest run",
"coverage": "vitest run --coverage",
"build": "tsup index.ts --format cjs,esm --dts --clean",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.test.ts\"",
"lint": "eslint ./src --ext .ts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepare": "husky install",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"keywords": [
"vite-plugin",
"mpa",
"html"
],
"author": "iamspark1e",
"repository": {
"url": "https://github.com/iamspark1e/vite-plugin-auto-mpa-html.git"
},
"license": "MIT",
"dependencies": {
"glob": "^9.3.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/connect": "^3.4.35",
"@types/node": "^18.15.12",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.30.1",
"connect": "^3.7.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.38.0",
"husky": "^8.0.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"supertest": "^6.3.3",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^4.2.3",
"vitest": "^0.30.1"
},
"type": "module"
}