forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "@vue-vine/eslint-plugin",
"version": "0.2.11",
"description": "ESLint plugin for Vue Vine",
"author": "ShenQingchuan",
"license": "MIT",
"keywords": [
"Vue",
"Vine",
"eslint",
"eslintPlugin"
],
"exports": {
".": {
"dev": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist",
"worker"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:dev": "vitest",
"prepublish": "pnpm run build"
},
"dependencies": {
"@antfu/utils": "^0.7.10",
"@vue-vine/eslint-parser": "workspace:*",
"prettier": "^3.3.2",
"prettier-linter-helpers": "^1.0.0",
"synckit": "^0.9.2"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"@types/prettier-linter-helpers": "^1.0.1",
"@typescript-eslint/types": "8.15.0",
"@typescript-eslint/typescript-estree": "^8.6.0",
"@typescript-eslint/utils": "^8.6.0",
"eslint": "~9.6.0",
"eslint-vitest-rule-tester": "^0.6.1",
"jsonc-eslint-parser": "^2.4.0"
}
}