-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 998 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 998 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "v2",
"version": "1.0.0",
"type": "module",
"main": "cli.beautify.js",
"workspaces": [
"tools/*",
"packages/*"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run src/tests/unit",
"test:integration": "vitest run src/tests/integration",
"type-check": "tsc --noEmit",
"build": "tsc --build",
"build:clean": "tsc --build --clean",
"mock:run": "node tools/mock-tool/src/mock-tool.js",
"qr-gen": "node tools/branded-qr-generator/src/branded-qr-generator.js",
"postinstall": "bash scripts/postinstall.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"commander": "^14.0.1",
"fs-extra": "^11.3.2",
"marked": "^17.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/marked": "^5.0.2",
"@vitest/ui": "^4.0.18",
"c8": "^10.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}