-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "@readshape/covers",
"version": "1.2.0",
"description": "Library for generating unique, repeatable book covers on the fly",
"homepage": "https://github.com/ReadShape/covers",
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"web-vitals": "^5.1.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@storybook/addon-actions": "^8.6.18",
"@storybook/addon-essentials": "^8.6.18",
"@storybook/addon-interactions": "^8.6.18",
"@storybook/addon-links": "^8.6.18",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.2.2",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"babel-loader": "^10.1.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.8.1",
"react-refresh": "^0.18.0",
"typescript": "latest",
"vite": "^6.4.1"
},
"scripts": {
"lint": "eslint ./src",
"build": "rm -rf dist && tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages",
"prerelease": "bun run build && bun run lint",
"preversion": "bun run prerelease",
"prepublish": "bun run prerelease"
},
"publishConfig": {
"access": "public"
}
}