-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "@byscripts/eslint-config",
"version": "0.8.3",
"repository": {
"url": "https://github.com/ByScripts/toolbox"
},
"type": "module",
"files": [
"dist"
],
"exports": {
"./javascript": {
"types": "./dist/javascript.d.mts",
"default": "./dist/javascript.mjs"
},
"./typescript": {
"types": "./dist/typescript.d.mts",
"default": "./dist/typescript.mjs"
},
"./vue": {
"types": "./dist/vue.d.mts",
"default": "./dist/vue.mjs"
}
},
"scripts": {
"build": "vite build"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/utils": "^8.56.1",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"@byscripts/eslint-plugin": "workspace:*",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^9.22.0 || ^10.0.0",
"eslint-plugin-vue": "^10.8.0"
},
"peerDependenciesMeta": {
"@byscripts/eslint-plugin": {
"optional": true
},
"@vue/eslint-config-typescript": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"vite": "^8.0.1",
"vite-plugin-dts": "^4.5.4"
},
"license": "MIT"
}