-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 894 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 894 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
{
"name": "wavecast",
"version": "0.1.0",
"description": "A Hugo shortcode module for persistent podcast/radio player with multi-source support",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test --config tests/e2e/playwright.config.js",
"test:e2e:ui": "playwright test --ui --config tests/e2e/playwright.config.js",
"lint": "eslint assets/js/ tests/js/",
"lint:fix": "eslint --fix assets/js/ tests/js/",
"format": "prettier --write 'assets/**/*.{js,css}' 'tests/**/*.{js,ts}'",
"format:check": "prettier --check 'assets/**/*.{js,css}' 'tests/**/*.{js,ts}'"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"eslint": "^10.4.1",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"vitest": "^4.1.9"
},
"dependencies": {
"turbolinks": "^5.2.0"
}
}