-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.16 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@dovocode/workstation",
"version": "0.6.3",
"description": "A stateful, programmable workstation configuration reconciler",
"type": "module",
"bin": {
"workstation": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.map"
],
"scripts": {
"docs": "pnpm docs:api && pnpm --filter @dovocode/workstation-docs build && node scripts/finalize-docs.mjs",
"docs:check": "node scripts/check-docs.mjs",
"docs:publish": "pnpm run docs && node scripts/publish-docs.mjs",
"build": "tsup",
"build:native": "tsup && node scripts/build-native.mjs",
"check": "tsc --noEmit && eslint . && pnpm --filter @dovocode/workstation-docs check",
"quality": "vitest run --coverage --coverage.reporter=json --coverage.reporter=text-summary && fallow --coverage coverage/coverage-final.json",
"test:coverage": "vitest run --coverage --coverage.reporter=json --coverage.reporter=text-summary",
"quality:audit": "fallow audit",
"quality:dead-code": "fallow dead-code",
"quality:dupes": "fallow dupes",
"quality:health": "fallow health",
"test": "vitest run",
"docs:api": "node scripts/check-docs.mjs && typedoc --options typedoc.json --treatWarningsAsErrors",
"docs:dev": "pnpm --filter @dovocode/workstation-docs start"
},
"dependencies": {
"jiti": "2.7.0",
"smol-toml": "1.8.0",
"yaml": "2.9.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "26.4.1",
"@vitest/coverage-v8": "3.2.4",
"eslint": "10.10.0",
"fallow": "3.22.0",
"postject": "1.0.0-alpha.6",
"tsup": "8.5.0",
"typedoc": "0.28.20",
"typescript": "5.9.2",
"typescript-eslint": "8.69.0",
"vitest": "3.2.4"
},
"engines": {
"node": ">=26.8.1"
},
"packageManager": "pnpm@12.3.4",
"repository": {
"type": "git",
"url": "git+https://github.com/dovocode/workstation.git"
},
"homepage": "https://github.com/dovocode/workstation",
"bugs": {
"url": "https://github.com/dovocode/workstation/issues"
},
"publishConfig": {
"access": "public"
}
}