-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.99 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
{
"name": "@lobehub/fluent-emoji",
"version": "0.0.0",
"private": true,
"description": "Fluent Emoji are a collection of familiar, friendly, and modern emoji from Microsoft",
"keywords": [
"emoji",
"fluent-emoji"
],
"homepage": "https://github.com/lobehub/fluent-emoji",
"bugs": {
"url": "https://github.com/lobehub/fluent-emoji/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/fluent-emoji.git"
},
"license": "MIT",
"author": "LobeHub <[email protected]>",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsx ./src/groupAnim.ts",
"lint": "eslint \"{src,packages}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"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"
},
"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": "^18",
"@lobehub/lint": "latest",
"@types/node": "latest",
"commitlint": "^18",
"eslint": "^8",
"glob": "^10.3.16",
"husky": "^8",
"lint-staged": "^15",
"multi-semantic-release": "^3",
"p-map": "^7.0.2",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"sharp": "^0.33.4",
"tsx": "^4.10.5",
"typescript": "^5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}