-
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.21 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jest": "^30.0.0",
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"eslint": "^10.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^64.2.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-yml": "^3.8.1",
"globals": "^17.11.0",
"http-server": "^14.1.1",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"yaml-eslint-parser": "^2.1.0",
"zod": "^4.4.3"
},
"prettier": {
"overrides": [
{
"files": [
"*.json"
],
"options": {
"printWidth": 1
}
},
{
"files": [
"docs/**/*.json"
],
"options": {
"tabWidth": 1
}
}
],
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"dependencies": {
"@types/jsdom": "^30.0.0",
"jiti": "^2.7.0",
"js-yaml": "^5.3.0",
"jsdom": "^30.0.1",
"marked": "^18.0.10"
}
}