-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "yext-js",
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"fmt": "oxfmt",
"lint": "oxlint --fix",
"autofix": "npm run lint && npm run fmt",
"generate-notices": "generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"ci-verify-publish": "tsx scripts/verifyPublish.ts",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^20.4.1",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.5.0",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"generate-license-file": "^2.0.0",
"lint-staged": "^13.2.3",
"minimist": "^1.2.8",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tsx": "^4.19.3"
},
"lint-staged": {
"*": "oxfmt",
"*.{ts,js,tsx,jsx}": "oxlint --fix"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"packageManager": "pnpm@9.12.3"
}