-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@yext/visual-editor",
"description": "Component library for Yext Pages Visual Editor",
"version": "0.0.18",
"type": "module",
"author": "[email protected]",
"types": "dist/index.d.ts",
"main": "dist/visual-editor.cjs",
"module": "dist/visual-editor.js",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/visual-editor.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/visual-editor.cjs"
}
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"prettier": "prettier --write --cache .",
"lint": "eslint --cache --fix src/ scripts/",
"autofix": "pnpm run lint && pnpm run prettier",
"ci-publish": "tsx scripts/publishCI.ts",
"release": "tsx scripts/release.ts",
"prepare": "husky && pnpm build",
"generate-notices": "generate-license-file",
"generate-registry": "tsx src/components/puck/registry/build-registry.ts"
},
"dependencies": {
"@measured/puck": "0.16.3-canary.5ba9399",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@yext/eslint-config": "^1.0.0",
"@yext/pages-components": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"lucide-react": "^0.414.0",
"next-themes": "^0.3.0",
"package.json": "^2.0.1",
"picocolors": "^1.0.1",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"react-color": "^2.19.3",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.16.3"
},
"engines": {
"node": "^17 || ^18 || ^20"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier --write --cache --ignore-unknown",
"*.{ts,js,tsx,jsx}": "eslint --cache --fix"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.11",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.3",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-require-extensions": "^0.1.3",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"generate-license-file": "^3.5.0",
"globals": "^15.8.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.7",
"minimist": "^1.2.8",
"postcss": "^8.4.39",
"prettier-plugin-tailwindcss": "^0.6.5",
"semver": "^7.6.3",
"tailwindcss": "^3.4.6",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.2.0",
"react-dom": "^17.0.2 || ^18.2.0"
}
}