-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.04 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.04 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"description": "API clients for various services.",
"devDependencies": {
"@eslint/js": "10.0.1",
"@evilmartians/lefthook": "2.1.6",
"@ffflorian/eslint-config": "0.14.2",
"@ffflorian/prettier-config": "0.8.2",
"@ffflorian/semantic-release-config": "0.12.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "~24",
"eslint": "10.2.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-oxlint": "1.61.0",
"eslint-plugin-perfectionist": "5.9.0",
"globals": "17.5.0",
"jiti": "2.6.1",
"multi-semantic-release": "3.1.0",
"oxlint": "1.61.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0"
},
"engines": {
"node": ">= 21"
},
"license": "GPL-3.0",
"name": "api-clients",
"packageManager": "yarn@4.14.1",
"prettier": "@ffflorian/prettier-config",
"private": true,
"scripts": {
"build:docs": "yarn workspaces foreach --all --parallel --exclude api-clients run build:docs",
"build": "yarn workspaces foreach --all --parallel --topological --exclude api-clients run build",
"clean": "yarn workspaces foreach --all --parallel --exclude api-clients run clean",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:ts && yarn fix:other",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts:oxlint --fix && yarn lint:ts:eslint --fix",
"lint": "yarn lint:other && yarn lint:ts",
"lint:other": "yarn prettier --list-different",
"lint:ts": "yarn lint:ts:oxlint && yarn lint:ts:eslint",
"lint:ts:eslint": "eslint packages/",
"lint:ts:oxlint": "oxlint --ignore-path .gitignore packages/",
"prettier": "prettier .",
"release": "multi-semantic-release --ignore-private-packages",
"test": "yarn test:all",
"test:all": "yarn workspaces foreach --all --parallel --exclude api-clients run test"
},
"workspaces": [
"packages/*"
]
}