-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.48 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
{
"name": "@lobehub/assets",
"version": "0.0.0",
"private": true,
"description": "Logo assets, favicons, webfonts for LobeHub",
"keywords": [
"logo",
"favicon",
"webfont"
],
"homepage": "https://github.com/lobehub/lobe-assets",
"bugs": {
"url": "https://github.com/lobehub/lobe-assets/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-assets.git"
},
"license": "MIT",
"author": "LobeHub <i@lobehub.com>",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build:favicons": "real-favicon generate src/favicons/faviconDescription.json favicons/faviconData.json favicons",
"build:logo": "node src/logo/index.js",
"build:webfonts": "node src/webfonts/index.js",
"clean": "lerna run clean && rm -rf es lib dist build coverage .umi .eslintcache apis",
"lint": "eslint \"{src,packages}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"{src,packages}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install",
"prettier": "prettier -c --write --no-error-on-unmatched-pattern \"**/**\"",
"reinstall": "npm run clean && lerna clean && rm -rf node_modules && npm run",
"release": "multi-semantic-release",
"release:local": "multi-semantic-release --no-ci",
"test": "real-favicon check-for-update --fail-on-upmdate faviconData.json"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17",
"@lobehub/lint": "latest",
"@types/node": "latest",
"clean-pkg-json": "^1",
"cli-real-favicon": "latest",
"commitlint": "^17",
"eslint": "^8",
"favicons": "^7",
"fontmin": "latest",
"husky": "^8",
"lint-staged": "^14",
"multi-semantic-release": "^3",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"sharp": "latest",
"stylelint": "^15",
"svgo": "latest",
"typescript": "^5",
"unicode-emoji-json": "latest"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}