-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2 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
{
"name": "@eruptionjs/config",
"version": "0.8.0",
"description": "Opinionated configuration for EruptionJS projects",
"publishConfig": {
"access": "public"
},
"main": "./src/index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./prettier": "./src/prettier.js",
"./typescript": "./src/typescript.json",
"./reset.d.ts": "./src/reset.d.ts",
"./eslint": "./src/eslint.js",
"./biome": "./src/biome.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eruptionjs/config.git"
},
"scripts": {
"format": "prettier --write .",
"typecheck": "tsc",
"lint": "eslint .",
"validate": "concurrently \"bun run format\" \"bun run lint\" \"bun run typecheck\"",
"upgrade": "bunx npm-check-updates --interactive --format group --install never"
},
"keywords": [
"eruption",
"eruptionjs",
"config",
"configuration",
"eslint",
"prettier",
"stylelint",
"lint-staged",
"biome"
],
"author": "Rai Siqueira <me@raisiqueira.io> (https://eruptionjs.dev)",
"license": "MIT",
"dependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-testing-library": "^7.16.2",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^17.7.0",
"typescript-eslint": "^8.64.0"
},
"devDependencies": {
"@types/react": "^19.2.17",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"pkg-pr-new": "^0.0.78",
"prettier": "^3.9.5",
"react": "^19.2.7",
"typescript": "^7.0.2"
},
"prettier": "./src/prettier.js",
"packageManager": "bun@1.3.14"
}