-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.45 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
{
"name": "@smartive/eslint-config",
"version": "0.0.0-development",
"description": "ESLint configuration by smartive",
"files": [
"README.md",
"LICENSE",
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./react-legacy": {
"import": "./dist/esm/react-legacy.js",
"require": "./dist/cjs/react-legacy.js"
},
"./typescript-legacy": {
"import": "./dist/esm/typescript-legacy.js",
"require": "./dist/cjs/typescript-legacy.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartive/eslint-config.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint"
],
"author": "smartive AG <hello@smartive.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartive/eslint-config/issues"
},
"homepage": "https://github.com/smartive/eslint-config#readme",
"dependencies": {
"@eslint/eslintrc": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"eslint-config-next": "^14.0.0 || ^15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@smartive/prettier-config": "^3.0.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/node": "^22.9.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.24.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"build:types": "tsc --declaration --emitDeclarationOnly",
"build:cjs": "esbuild --platform=browser --format=cjs --outdir=dist/cjs/ ./src/*.ts",
"build:mjs": "esbuild --platform=neutral --format=esm --outdir=dist/esm/ ./src/*.ts",
"build": "rm -rf dist && npm run build:cjs && npm run build:mjs && npm run build:types",
"commitlint": "commitlint --edit",
"prepare": "[ ! -f node_modules/.bin/husky ] || husky"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}