-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "turbo-daemon",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git@github.com:NullVoxPopuli/turbo-daemon.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"bin": {
"turbo-daemon": "./src/bin.js"
},
"files": [
"src"
],
"scripts": {
"cli": "node ./src/bin.js",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:package": "publint",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:published-types": "attw --pack . --ignore-rules no-resolution cjs-resolves-to-esm",
"lint:types": "tsc --noEmit",
"logs": "pnpm cli logs"
},
"dependencies": {
"close-with-grace": "^1.3.0",
"get-port": "^7.1.0",
"pino": "^9.2.0",
"salvatore": "^0.2.1",
"turborepo-remote-cache": "^2.3.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@nullvoxpopuli/eslint-configs": "^5.5.0",
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "25.0.10",
"concurrently": "^9.2.1",
"eslint": "9.39.2",
"execa": "^9.6.1",
"prettier": "3.8.1",
"publint": "^0.3.17",
"release-plan": "^0.17.4",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": "^20.11.0 || >= 22.16.0"
}
}