-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.6 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
126
127
128
129
130
131
{
"name": "easypress",
"version": "1.0.2",
"description": "Vite SSG framework based on islands arch",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"dev": "tsup --watch",
"build": "tsup && pnpm build:deps",
"build:deps": "tsx ./scripts/prebundle.ts",
"preview": "cd ./docs/build && serve .",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx ./",
"test:unit": "vitest run",
"prepare:e2e": "tsx scripts/prepare-e2e.ts",
"test:e2e": "playwright test",
"release": "tsx ./scripts/release.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"bin": {
"easy": "bin/easypress.js"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"eslint --fix"
]
},
"keywords": [
"vite",
"ssg"
],
"author": "CoderBin",
"license": "MIT",
"files": [
"dist",
"bin",
"README.md",
"src/runtime",
"src/theme-default",
"src/shared",
"vendors",
"template.html"
],
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@mdx-js/mdx": "^2.1.5",
"@playwright/test": "1.26.1",
"@types/babel__core": "^7.20.0",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/babel__traverse": "^7.18.3",
"@types/fs-extra": "^9.0.13",
"@types/hast": "^2.3.4",
"@types/lodash-es": "^4.17.6",
"@types/mdast": "^3.0.10",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitest/ui": "^0.25.2",
"chalk": "^5.2.0",
"commitlint": "^17.2.0",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "5.1.1",
"hast": "^1.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mdast-util-mdxjs-esm": "^1.3.0",
"minimist": "^1.2.8",
"prettier": "^2.7.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-mdx": "^2.1.5",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"rollup": "^3.2.3",
"sass": "^1.57.1",
"semver": "^7.3.8",
"serve": "^14.0.1",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.8.4",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1",
"vitest": "^0.25.2"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/traverse": "^7.20.13",
"@iconify-json/carbon": "^1.1.13",
"@loadable/component": "^5.15.2",
"@mdx-js/rollup": "2.1.3",
"@vitejs/plugin-react": "^2.2.0",
"acorn": "^8.8.1",
"cac": "^6.7.14",
"compression": "^1.7.4",
"esbuild": "^0.17.8",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^1.0.0",
"lodash-es": "^4.17.21",
"ora": "^6.1.2",
"polka": "^0.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "1.3.0",
"react-router-dom": "6.4.3",
"rehype-autolink-headings": "^6.1.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"resolve": "^1.22.1",
"shiki": "^0.11.1",
"sirv": "^2.0.2",
"unocss": "^0.48.0",
"vite": "3.1.4"
}
}