-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 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
{
"name": "eslint-online-playground",
"version": "1.0.0",
"description": "ESLint Online Playground",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite --open",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"open-site": "npx http-server ./build",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ota-meshi/eslint-online-playground.git"
},
"author": "Yosuke Ota (https://github.com/ota-meshi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ota-meshi/eslint-online-playground/issues"
},
"homepage": "https://github.com/ota-meshi/eslint-online-playground#readme",
"dependencies": {
"@babel/parser": "^7.26.7",
"@eslint-community/eslint-utils": "^4.4.0",
"@ota-meshi/site-kit-monarch-syntaxes": "^0.7.0",
"@webcontainer/api": "^1.2.0",
"ansi-regex": "^6.1.0",
"eslint-scope": "^8.0.1",
"esrap": "^1.4.3",
"fflate": "^0.8.2",
"shine-and-bright": "^0.3.0",
"vue": "^3.4.30",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"yaml": "^2.4.5"
},
"devDependencies": {
"@ota-meshi/eslint-plugin": "^0.17.4",
"@types/eslint": "^9.0.0",
"@types/eslint-scope": "^3.7.7",
"@types/eslint-utils": "^3.0.5",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.5.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-json-schema-validator": "^5.1.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-node-dependencies": "^0.12.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "~3.0.1",
"eslint-plugin-toml": "^0.12.0",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-yml": "^1.14.0",
"monaco-editor": "^0.52.0",
"typescript": "^5.5.2",
"vite": "^6.0.0",
"vitest": "^3.0.4",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.22"
}
}