-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.83 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
57
58
59
{
"name": "root",
"private": true,
"keywords": [],
"author": {
"name": "roydukkey",
"email": "contact@changelog.me",
"url": "http://changelog.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://roydukkey@github.com/roydukkey/custom-highlight.git",
"branch": "master"
},
"homepage": "https://custom-highlight.pages.dev/",
"bugs": {
"url": "https://github.com/roydukkey/custom-highlight/issues"
},
"type": "module",
"engines": {
"node": ">=22.22.2"
},
"packageManager": "pnpm@11.9.0",
"devDependencies": {
"@roydukkey/eslint-config": "catalog:",
"@tsconfig/node22": "catalog:",
"@tsconfig/strictest": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"clean-package": "catalog:",
"conventional-changelog": "catalog:",
"conventional-changelog-conventionalcommits": "catalog:",
"conventional-recommended-bump": "catalog:",
"cspell": "catalog:",
"del-cli": "catalog:",
"eslint": "catalog:",
"eslint-plugin-tsdoc": "catalog:",
"fs-extra": "catalog:",
"globals": "catalog:",
"npm-run-all2": "catalog:",
"typescript-eslint": "catalog:"
},
"scripts": {
"clean": "pnpm --recursive clean",
"lint": "run-s lint:* --continue-on-error",
"lint:spelling": "cspell lint --config './.vscode/cspell.json' --no-progress --show-context --relative '**'",
"lint:root": "eslint './*.@(?(m|c)@(j|t)s|@(j|t)sx|vue)'",
"lint:src": "pnpm --recursive lint",
"test": "pnpm --filter custom-highlight test",
"dev": "pnpm --filter docs dev",
"build": "pnpm --recursive build",
"build:docs": "pnpm --filter docs build",
"serve": "pnpm --filter docs serve",
"release:version": "pnpm --filter custom-highlight release:version",
"release:publish": "run-s build release:publish:*",
"release:publish:^1": "pnpm --filter custom-highlight publish"
}
}