-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.04 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
{
"private": true,
"name": "build",
"type": "module",
"scripts": {
"postinstall": "elm-tooling install",
"install-test-elm-dependencies": "tsx scripts/InstallTestDependencies.ts",
"pretest": "run-pty --auto-exit % prettier --check . % eslint . --report-unused-disable-directives % tsc % tsx scripts/EnsureTestDependencies.ts % npm run build",
"test": "vitest run --coverage",
"build": "tsx scripts/Build.ts"
},
"devDependencies": {
"@types/cross-spawn": "6.0.6",
"@types/ws": "8.5.13",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.22",
"elm-tooling": "1.15.1",
"esbuild": "0.24.2",
"eslint": "9.17.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.14.0",
"jsdom": "25.0.1",
"prettier": "3.4.2",
"run-pty": "5.0.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vitest": "2.1.8"
},
"dependencies": {
"chokidar": "^3.5.3",
"cross-spawn": "^7.0.6",
"tiny-decoders": "^23.0.0",
"ws": "^8.18.0"
}
}