-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 829 Bytes
/
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
{
"version": "2.0.0",
"name": "eslint-config-hs",
"description": "Heunsig ESLint",
"type": "module",
"author": {
"name": "Heunsig",
"email": "heun3344@gmail.com"
},
"private": false,
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore --fix"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^2.8.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.10.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.8.0"
},
"exports": {
"./js": {
"import": "./js.js"
},
"./ts": {
"import": "./ts.js"
},
"./vue": {
"import": "./vue.js"
},
"./vue-ts": {
"import": "./vue-ts.js"
},
"./nuxt": {
"import": "./nuxt.js"
}
}
}