-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 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
{
"name": "osa-snippets",
"private": true,
"packageManager": "yarn@4.10.3",
"type": "module",
"workspaces": [
"js"
],
"scripts": {
"cli": "yarn workspace @virtualize/osa-snippets run cli",
"lint": "biome check ./js",
"test": "vitest ./js --run",
"test-all": "vitest ./js --run",
"test:coverage": "vitest ./js --run --coverage",
"lint:fix": "biome check --fix ./js",
"build": "echo 'Nothing to build at root'",
"test:e2e": "yarn test && ./tests/run-tests.zsh"
},
"devDependencies": {
"@biomejs/biome": "^2.3.3",
"@types/commander": "^2.12.5",
"@types/csv-stringify": "^3.1.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.10",
"@types/whois-json": "^2",
"@vitest/coverage-v8": "4.0.6",
"corepack": "^0.34.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"dependencies": {
"commander": "^14.0.2",
"csv-stringify": "^6.6.0",
"js-yaml": "^4.1.0",
"p-limit": "^7.2.0",
"whois-json": "2.0.4"
}
}