-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "@ecomfe/eslint-config",
"version": "9.0.0-beta.1",
"type": "module",
"description": "ESLint config for Baidu EFE.",
"repository": "ecomfe/eslint-config",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"watch": "tsc --project tsconfig.build.json --watch",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"lint": "eslint src",
"ci": "npm ci && npm run lint && npm run build",
"deploy": "npm publish --access public",
"prepublishOnly": "npm run ci",
"release": "commit-and-tag-version",
"prepare": "husky"
},
"author": "otakustay <otakustay@gmail.com> (https://github.com/otakustay)",
"contributors": [
"GU Yiling <justice360@gmail.com> (https://github.com/Justineo)"
],
"license": "MIT",
"peerDependencies": {
"eslint": "9.x"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commit-and-tag-version": "^12.5.2",
"dprint": "^0.50.1",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@babel/eslint-parser": "^7.28.0",
"@stylistic/eslint-plugin": "^5.2.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"semver": "^7.7.2",
"typescript-eslint": "^8.39.0"
}
}