-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 851 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 851 Bytes
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
{
"name": "straights",
"private": true,
"version": "0.8.6",
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@types/jquery": "^4.0.0",
"@types/node": "^25.5.2",
"@types/serviceworker": "^0.0.194",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"cheerio": "^1.2.0",
"jquery": "^4.0.0",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 80
},
"scripts": {
"format": "prettier --write \"webdev/**/*.js\" \"**/*.{ts,css,html,json}\"",
"tsc": "tsc -p tsconfig.json",
"tsc:watch": "tsc -p tsconfig.json --watch",
"test": "vitest",
"test:run": "vitest run",
"test:debug": "vitest --inspect-brk --no-coverage"
}
}