-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.32 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "viteland",
"version": "1.2.3",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"vl": "bin/cli.js",
"viteland": "bin/cli.js"
},
"scripts": {
"test": "vitest",
"test:e2e": "playwright test",
"dev": "tsup --watch",
"dev:vl": "vl dev",
"build": "tsup",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"lint:lint-staged": "lint-staged",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"files": [
"dist",
"bin/cli.js",
"README.md",
"src/theme-default",
"template.html"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm run lint --fix",
"npx prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"npx prettier --write--parser json"
],
"package.json": [
"npx prettier --write"
],
"*.{scss,less,styl,html}": [
"npx prettier --write"
],
"*.md": [
"npx prettier --write"
]
},
"keywords": [
"vite",
"ssg"
],
"author": "xiyueyezibile",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@iconify-json/carbon": "^1.1.31",
"@playwright/test": "^1.42.1",
"@testing-library/react": "^14.2.2",
"@types/fs-extra": "^11.0.4",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.3",
"@types/node": "^20.11.26",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"babel-eslint": "^10.1.0",
"commitlint": "^19.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"happy-dom": "^14.3.9",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lightningcss": "^1.24.1",
"lint-staged": "^15.2.2",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"serve": "^14.2.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"unist-util-visit": "^5.0.0",
"vitest": "^1.4.0"
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/helper-plugin-utils": "^7.24.0",
"@babel/preset-react": "^7.24.1",
"@babel/traverse": "^7.24.1",
"@loadable/component": "^5.16.3",
"@mdx-js/rollup": "^3.0.1",
"@vitejs/plugin-react": "^4.2.1",
"acorn": "^8.11.3",
"cac": "^6.7.14",
"compression": "^1.7.4",
"fast-glob": "^3.3.2",
"flexsearch": "^0.7.43",
"fs-extra": "^11.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.1",
"mdast-util-mdxjs-esm": "^2.0.1",
"polka": "^0.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-router-dom": "^6.22.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sass": "^1.75.0",
"shiki": "^1.3.0",
"sirv": "^2.0.4",
"unified": "^11.0.4",
"unocss": "^0.59.3",
"vite": "^5.2.8"
}
}