-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "github-slash-palette",
"version": "0.0.6",
"description": "Slash commands for GitHub markdown fields",
"type": "module",
"scripts": {
"build": "bun run scripts/build.ts",
"dev": "bun run scripts/build.ts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,html,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,html,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"check": "bun run typecheck && bun run lint && bun run format:check && bun run test",
"analyze": "bun run build && echo '\nBundle sizes reported above'"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/bun": "^1.3.5",
"@types/chrome": "^0.1.32",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.16",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"happy-dom": "^20.0.11",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16",
"zod": "^4.2.1"
},
"dependencies": {
"@t3-oss/env-core": "^0.13.10"
}
}