-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"description": "My Node.js packages",
"devDependencies": {
"@ffflorian/oxlint-config": "1.0.3",
"@ffflorian/prettier-config": "1.0.1",
"@ffflorian/semantic-release-config": "1.0.1",
"@semantic-release/changelog": "7.0.0",
"@semantic-release/git": "11.0.1",
"@types/node": "~26",
"eslint": "10.8.1",
"eslint-plugin-perfectionist": "5.10.1",
"lefthook": "2.1.10",
"multi-semantic-release": "3.1.0",
"oxlint": "1.77.0",
"prettier": "3.9.6",
"semantic-release": "25.0.9",
"typescript": "7.0.2",
"vite": "8.2.1",
"vitest": "4.1.10"
},
"engines": {
"node": ">= 18.0"
},
"license": "GPL-3.0",
"name": "node-packages",
"packageManager": "yarn@4.18.0",
"prettier": "@ffflorian/prettier-config",
"private": true,
"scripts": {
"build:ts": "yarn workspaces foreach --all --parallel --topological --exclude node-packages run build",
"clean": "yarn workspaces foreach --all --parallel --exclude node-packages 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:other && yarn lint:ts",
"lint:other": "yarn prettier --list-different",
"lint:ts": "oxlint --ignore-path .gitignore packages/",
"prettier": "prettier .",
"release": "multi-semantic-release --ignore-private-packages --sequential-init",
"test": "yarn test:all",
"test:all": "yarn workspaces foreach --all --parallel --exclude node-packages run test"
},
"workspaces": [
"packages/*"
]
}