-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.09 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
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
{
"name": "esconfigs",
"version": "1.0.8",
"description": "Generate linting configs for js",
"bugs": {
"url": "https://github.com/dangus21/esconfigs/issues"
},
"homepage": "https://github.com/dangus21/esconfigs#readme",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.cjs",
"types": "./dist/types.d.ts",
"files": [
"./dist"
],
"bin": {
"esconfigs": "./dist/index.cjs"
},
"scripts": {
"lint": "eslint --fix src",
"pretty": "prettier src --write",
"format": "pnpm pretty && pnpm lint",
"build": "rimraf dist && tsup",
"pub": "pnpm publish --access public && git push -f",
"pp": "pnpm version patch --force && pnpm publish --access public && git push -f",
"pm": "pnpm version minor --force && pnpm publish --access public && git push -f",
"pmm": "pnpm version major --force && pnpm publish --access public && git push -f",
"test_esc": "rimraf ./dist && pnpm build && tsx ./src/index.ts",
"test": "jest",
"test:cov": "jest --coverage"
},
"keywords": [
"lint",
"format",
"javascript",
"ecmascript",
"prettier",
"biomejs",
"config",
"editorConfig",
"tooling"
],
"author": "",
"license": "ISC",
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"tsup": "^8.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
}