28 lines
857 B
JSON
28 lines
857 B
JSON
{
|
|
"name": "q-edit",
|
|
"version": "1.1.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Q-Edit — static SPA with tooling for lint, format, test, CI, and docs/tests audits.",
|
|
"scripts": {
|
|
"lint": "eslint . --ignore-pattern coverage/**",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"test": "vitest run --coverage",
|
|
"test:watch": "vitest",
|
|
"serve": "node scripts/serve.mjs",
|
|
"build": "node -e \"console.log('No build step (static app).')\"",
|
|
"docs:audit": "node scripts/docs-audit.mjs",
|
|
"tests:audit": "node scripts/tests-audit.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.9.0",
|
|
"eslint-plugin-unused-imports": "^4.1.3",
|
|
"prettier": "^3.3.3",
|
|
"vitest": "^1.6.0",
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
"jsdom": "^24.1.0"
|
|
}
|
|
}
|