@vue-vine/eslint-parser 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@vue-vine/eslint-parser",
3
+ "version": "0.1.0",
4
+ "description": "ESLint parser for Vue Vine",
5
+ "author": "ShenQingchuan",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "Vue",
9
+ "Vine"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "dev": "./src/index.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js"
16
+ },
17
+ "./package.json": "./package.json"
18
+ },
19
+ "main": "./dist/index.js",
20
+ "module": "./dist/index.mjs",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "dependencies": {
25
+ "@types/lodash": "^4.14.201",
26
+ "@typescript-eslint/parser": "^6.21.0",
27
+ "@typescript-eslint/scope-manager": "^6.21.0",
28
+ "@typescript-eslint/typescript-estree": "^6.21.0",
29
+ "debug": "^4.3.4",
30
+ "eslint-scope": "^7.2.2",
31
+ "espree": "^9.6.1",
32
+ "line-column": "^1.0.2",
33
+ "lodash": "^4.17.21",
34
+ "semver": "^7.5.4"
35
+ },
36
+ "devDependencies": {
37
+ "@types/debug": "^4.1.12",
38
+ "@types/eslint-scope": "^3.7.7",
39
+ "@types/line-column": "^1.0.2",
40
+ "@types/node": "^20.9.2",
41
+ "@types/semver": "^7.5.5",
42
+ "eslint": "^8.54.0"
43
+ },
44
+ "scripts": {
45
+ "dev": "tsup --watch",
46
+ "build": "tsup"
47
+ }
48
+ }