-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"description": "My Node.js packages",
"devDependencies": {
"@eslint/js": "9.39.2",
"@evilmartians/lefthook": "2.1.1",
"@ffflorian/eslint-config": "0.13.3",
"@ffflorian/prettier-config": "0.6.3",
"@types/node": "~24",
"eslint": "10.0.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-oxlint": "1.50.0",
"eslint-plugin-perfectionist": "5.6.0",
"globals": "17.4.0",
"jiti": "2.6.1",
"lerna": "9.0.4",
"oxlint": "1.51.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"engines": {
"node": ">= 18.0"
},
"license": "GPL-3.0",
"name": "node-packages",
"packageManager": "yarn@4.12.0",
"prettier": "@ffflorian/prettier-config",
"private": true,
"scripts": {
"build:ts": "lerna run build --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: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": "lerna publish",
"test": "yarn test:all",
"test:all": "lerna run test --concurrency 4"
},
"workspaces": [
"packages/*"
]
}