-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.86 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.86 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
{
"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",
"test": "turbo run test --filter=imagekit-editor-dev",
"test:coverage": "turbo run test:coverage --filter=imagekit-editor-dev",
"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 --files-ignore-unknown=true",
"lint:fix": "biome format --write ./ --files-ignore-unknown=true"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "12.1.5",
"@types/human-date": "^1",
"@types/jsdom": "^28",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.1.2",
"shx": "^0.4.0",
"turbo": "^2.0.1",
"vitest": "^2.1.9"
},
"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": {
"human-date": "^1.4.0",
"react-select": "^5.2.1"
}
}