-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "@clipboard-health/core-utils",
"dependencies": {
"tslib": "2.8.0"
},
"devDependencies": {
"@nx/eslint": "20.0.1",
"@nx/eslint-plugin": "20.0.1",
"@nx/jest": "20.0.1",
"@nx/js": "20.0.1",
"@nx/webpack": "20.0.1",
"@swc-node/register": "1.10.9",
"@swc/core": "1.10.9",
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/jest": "29.5.13",
"@types/node": "22.10.7",
"@typescript-eslint/parser": "7.18.0",
"cspell": "8.17.2",
"eslint": "8.57.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jsonc-eslint-parser": "2.4.0",
"knip": "5.42.2",
"lint-staged": "15.4.1",
"nx": "20.0.1",
"prettier": "3.4.2",
"syncpack": "13.0.0",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typedoc": "0.27.6",
"typescript": "5.7.3"
},
"engines": {
"node": ">=22.11.0",
"npm": ">=10.9.0"
},
"license": "MIT",
"overrides": {
"tsconfig-paths": "4.2.0"
},
"private": true,
"scripts": {
"affected": "nx affected --base main --configuration ci --parallel 8 --targets build,lint,test",
"all": "npm run ci:check && nx run-many --configuration ci --parallel 8 --targets build,lint,test",
"ci:check": "nx format:check && prettier --check . && npm run cspell -- . && syncpack lint && npm run embed:check && npm run knip",
"ci:install": "npm install --audit false --fund false",
"cspell": "cspell --no-summary --no-progress --no-must-find-files",
"docs": "rm -rf docs && typedoc",
"embed": "tsx packages/embedex/src/bin/cli.ts --sourcesGlob 'packages/*/examples/**/*.{md,ts}'",
"embed:check": "npm run embed -- --check",
"format": "prettier --write .",
"knip": "NX_DAEMON=false knip",
"prepare": "husky"
},
"workspaces": [
"packages/*"
]
}