-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 2.04 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
57
58
59
60
61
62
63
{
"author": "Florian Imdahl <[email protected]>",
"description": "My Node.js packages",
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/eslint-parser": "7.25.9",
"@evilmartians/lefthook": "1.8.2",
"@ffflorian/eslint-config": "0.10.3",
"@ffflorian/prettier-config": "0.3.3",
"@types/babel__core": "7.20.4",
"@types/eslint": "^8",
"@types/node": "~22",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"babel-eslint": "10.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-oxlint": "0.10.1",
"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": "3.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"lerna": "8.1.9",
"oxlint": "0.10.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.4"
},
"engines": {
"node": ">= 18.0"
},
"license": "GPL-3.0",
"name": "node-packages",
"prettier": "@ffflorian/prettier-config",
"private": true,
"scripts": {
"build:docs": "lerna run build:docs --concurrency 4",
"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 --fix",
"lint": "yarn lint:ts && yarn lint:other",
"lint:other": "yarn prettier --list-different",
"lint:ts": "oxlint --ignore-path .gitignore packages && eslint --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/*"
],
"packageManager": "[email protected]"
}