-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "elog",
"version": "1.0.0",
"description": "开放式跨端博客解决方案,随意组合写作平台(语雀/Notion/FlowUs)和博客平台(Hexo/Vitepress/Confluence/WordPress)等",
"homepage": "https://github.com/LetTTGACO/elog#readme",
"author": "1874 <[email protected]>",
"main": "index.js",
"license": "MIT",
"private": true,
"keywords": [
"blog",
"yuque",
"notion",
"hexo",
"hugo",
"vitepress",
"flowus"
],
"bugs": {
"url": "https://github.com/LetTTGACO/elog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LetTTGACO/elog.git"
},
"scripts": {
"build": "pnpm --filter=@elog/* run build",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm changeset publish",
"beta": "pnpm changeset pre enter beta",
"beta:exit": "pnpm changeset pre exit"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"tsup": "^6.7.0",
"typescript": "^4.9.3"
}
}