-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "@cewald/eslint-config",
"description": "Personal JS/TS coding style-guide",
"author": "Ewald <me@ewaldewald.com>",
"keywords": [
"eslintconfig",
"eslint"
],
"homepage": "https://github.com/cewald/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cewald/eslint-config.git"
},
"bugs": {
"url": "https://github.com/cewald/eslint-config/issues"
},
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"prepare": "husky",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"devDependencies": {
"@cewald/eslint-config": "./",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"eslint-plugin-vue": "^9.31.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"semantic-release": "^24.1.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@stylistic/eslint-plugin": "^2.6.4",
"deepmerge": "^4.3.1",
"eslint": "^9.9.1",
"eslint-plugin-tailwindcss": "^3.17.4"
},
"peerDependencies": {
"eslint": "^9.9.1"
},
"lint-staged": {
"*": [
"npm run lint:fix"
]
},
"publishConfig": {
"access": "public",
"provenance": true
}
}