-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "cubicj-brewing",
"version": "0.7.2",
"private": true,
"scripts": {
"dev": "node esbuild.config.mjs watch",
"build": "node esbuild.config.mjs production",
"verify": "npm run test && npm run check && npm run build && node .github/scripts/verify-build.mjs",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"watch": "node esbuild.config.mjs watch",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"release": "node scripts/release.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.0",
"archiver": "^7.0.1",
"esbuild": "^0.28.0",
"eslint": "^10.0.3",
"eslint-plugin-obsidianmd": "^0.4.1",
"jsdom": "^29.0.0",
"obsidian": "^1.13.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@stoprocent/noble": "^2.8.0"
}
}