-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 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
60
61
62
63
64
65
66
67
{
"name": "visual-editor",
"version": "0.0.1",
"description": "A monorepo containing all packages used by Yext Visual Editor",
"author": "sumo@yext.com",
"license": "BSD-3-Clause",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"release": "tsx scripts/release.ts",
"fmt": "prettier --write --cache .",
"generate-notices": "generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"prettier": "pnpm -r run prettier",
"lint": "pnpm -r run lint",
"docs": "pnpm -r run api-extractor && pnpm -r run generate-docs && pnpm run fmt",
"ci-verify-publish": "tsx scripts/verifyPublish.ts",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --write --cache --ignore-unknown",
"*.{ts,js,tsx,jsx}": "oxlint --fix"
},
"engines": {
"node": "^20.6.0 || ^22 || ^24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yext/visual-editor.git"
},
"homepage": "https://github.com/yext/visual-editor#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/minimist": "^1.2.5",
"globals": "^15.8.0",
"@types/node": "^20.10.6",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"oxlint": "1.2.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"generate-changelog": "^1.8.0",
"generate-license-file": "^3.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"pkg-pr-new": "^0.0.54",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"yaml": "^2.3.4"
},
"packageManager": "pnpm@9.12.3",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "^5.3.5"
}
}
}
}