-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "imagekit-editor",
"private": true,
"description": "AI Image Editor powered by ImageKit",
"keywords": [],
"author": {
"name": "ImageKit Developer",
"email": "developer@imagekit.io",
"url": "https://imagekit.io"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "turbo run dev",
"start": "turbo run start",
"build": "turbo run build",
"version": "yarn workspace @imagekit/editor version",
"package": "yarn build && shx cp README.md ./packages/imagekit-editor/ && yarn workspace @imagekit/editor pack --out ../../builds/imagekit-editor-%v.tgz",
"release": "yarn build && shx cp README.md ./packages/imagekit-editor/ && yarn workspace @imagekit/editor pack --out ../../builds/imagekit-editor-%v.tgz && yarn workspace @imagekit/editor publish",
"prepare": "husky",
"lint": "biome ci",
"lint:fix": "biome format --write ./"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"shx": "^0.4.0",
"turbo": "^2.0.1"
},
"packageManager": "yarn@4.9.2",
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome ci --files-ignore-unknown=true"
],
"*": [
"biome ci --files-ignore-unknown=true"
]
},
"dependencies": {
"react-select": "^5.2.1"
}
}