-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 3.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "typescript-eslint-parser-for-extra-files",
"version": "0.1.1",
"description": "An experimental ESLint custom parser for Vue, Svelte, and Astro for use with TypeScript. It provides type information in combination with each framework's ESLint custom parser.",
"repository": "git+https://github.com/ota-meshi/typescript-eslint-parser-for-extra-files.git",
"homepage": "https://github.com/ota-meshi/typescript-eslint-parser-for-extra-files#readme",
"author": "Yosuke Ota (https://github.com/ota-meshi)",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
},
"main": "lib/index.js",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"eslint",
"parser",
"vue",
"svelte",
"astro",
"typescript"
],
"scripts": {
"build": "tsup",
"clean": "rimraf .nyc_output lib coverage",
"cover": "nyc --reporter=lcov yarn test",
"debug": "yarn mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"eslint-fix": "yarn lint --fix",
"lint": "eslint .",
"mocha": "yarn ts ./node_modules/mocha/bin/mocha.js",
"prebuild": "yarn clean",
"prerelease": "yarn clean && yarn build",
"preversion": "yarn lint && yarn test",
"release": "changeset publish",
"test": "yarn mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"ts": "node -r esbuild-register",
"update-fixture": "yarn mocha \"tests/src/**/*.ts\" --update --reporter dot --timeout 60000"
},
"peerDependencies": {
"@typescript-eslint/parser": ">=5.41.0",
"astrojs-compiler-sync": ">=0.3.1",
"svelte2tsx": ">=0.5.20",
"typescript": ">=4.8.4",
"vue": "^3.2.41"
},
"peerDependenciesMeta": {
"astrojs-compiler-sync": {
"optional": true
},
"svelte2tsx": {
"optional": true
},
"typescript": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.2",
"@ota-meshi/eslint-plugin": "^0.13.1",
"@types/chai": "^4.3.0",
"@types/eslint": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"astrojs-compiler-sync": "^0.3.1",
"chai": "^4.3.4",
"esbuild": "^0.15.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-json-schema-validator": "^4.0.2",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-svelte": "^2.11.0",
"eslint-plugin-vue": "^9.6.0",
"eslint-plugin-yml": "^1.2.0",
"mocha": "^10.0.0",
"mocha-chai-jest-snapshot": "^1.1.3",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"prettier-plugin-pkg": "^0.17.1",
"prettier-plugin-svelte": "^2.8.0",
"semver": "^7.3.5",
"svelte": "^3.52.0",
"svelte2tsx": "^0.5.20",
"tsup": "^6.3.0",
"typescript": "~4.9.0",
"vue": "^3.2.41",
"vue-eslint-parser": "^9.1.0"
},
"publishConfig": {
"access": "public"
}
}