-
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.89 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.89 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": "@fairu/annotate",
"version": "1.0.0",
"description": "YOLO image annotation component for React",
"type": "module",
"main": "./dist/fairu-annotate.cjs",
"module": "./dist/fairu-annotate.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/fairu-annotate.js",
"require": "./dist/fairu-annotate.cjs"
},
"./styles.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"test:e2e": "playwright test"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"zustand": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@storybook/addon-docs": "^10.2.8",
"@storybook/react": "^10.2.8",
"@storybook/react-vite": "^10.2.8",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.4",
"jsdom": "^28.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"storybook": "^10.2.8",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.0.18"
},
"license": "SEE LICENSE IN LICENSE"
}