-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.78 KB
/
package.json
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 <[email protected]>",
"description": "API clients for various services.",
"devDependencies": {
"@evilmartians/lefthook": "1.8.4",
"@ffflorian/eslint-config": "0.8.3",
"@ffflorian/prettier-config": "0.3.3",
"@swc/core": "1.9.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-eslint": "10.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"lerna": "8.1.9",
"oxlint": "0.13.2",
"prettier": "3.4.1"
},
"engines": {
"node": ">= 10.9",
"yarn": ">= 1"
},
"license": "GPL-3.0",
"prettier": "@ffflorian/prettier-config",
"private": true,
"resolutions": {
"strip-ansi": "^6",
"wrap-ansi": "^6"
},
"scripts": {
"build:docs": "lerna run build:docs --concurrency 4",
"build:ts": "lerna run build:ts --concurrency 4",
"clean": "lerna run clean",
"dist": "yarn clean && yarn build:ts",
"fix": "yarn fix:ts && yarn fix:other",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"lint": "yarn lint:ts && yarn lint:other",
"lint:other": "yarn prettier --list-different",
"lint:ts": "oxlint --ignore-path .gitignore packages",
"prettier": "prettier \"*.{json,md,yml}\"",
"release": "lerna publish",
"test": "yarn lint && yarn test:all",
"test:all": "lerna run test --concurrency 4"
},
"workspaces": [
"packages/*"
]
}