-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.6 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@dansreis/react-canvas-annotator",
"homepage": "http://dansreis.github.io/react-canvas-annotator",
"version": "1.0.5-alpha",
"description": "",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint:fix": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"build": "tsc && vite build",
"test": "vitest run",
"test-watch": "vitest",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build"
},
"author": "Daniel Reis",
"license": "MIT",
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-mdx-gfm": "^8.1.10",
"@storybook/addon-onboarding": "^8.1.10",
"@storybook/addon-themes": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/manager-api": "^8.1.10",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.1.10",
"@storybook/test": "^8.1.10",
"@storybook/theming": "^8.1.9",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/fabric": "^5.3.7",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"react": "^18.3.1",
"storybook": "^8.1.10",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.4",
"vitest-canvas-mock": "^0.3.3"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format",
"npm run lint",
"npm run test"
]
},
"publishConfig": {
"dansreis:registry": "https://registry.npmjs.org/"
},
"keywords": [
"react-component",
"react-canvas-annotator"
],
"dependencies": {
"fabric": "^5.3.0",
"fabricjs-react": "^1.2.2",
"uuid": "^10.0.0"
}
}