-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "storybook-next-intl",
"version": "10.1.3",
"bugs": {
"url": "https://github.com/stevensacks/storybook-next-intl/issues"
},
"description": "Add next-intl support to Storybook",
"keywords": [
"storybook-addons",
"storybook-i18n",
"next",
"next-intl",
"i18n",
"localization",
"internationalization"
],
"repository": {
"type": "git",
"url": "https://github.com/stevensacks/storybook-next-intl"
},
"license": "MIT",
"author": "Steven Sacks",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./preview": {
"types": "./dist/preview.d.ts",
"default": "./dist/preview.js"
},
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"prebuild": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"",
"build": "tsup",
"build-storybook": "storybook build",
"build:watch": "npm run build -- --watch",
"eject-ts": "zx scripts/eject-typescript.js",
"format": "prettier --write .",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"prerelease": "zx scripts/prepublish-checks.js",
"release": "npm run build && auto shipit",
"start": "run-p build:watch \"storybook --quiet\"",
"storybook": "storybook dev -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"storybook-i18n": "^10.0.8"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@storybook/react-vite": "^10.0.0",
"@types/node": "^20",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.7.0",
"auto": "^11.3.0",
"boxen": "^8.0.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.0.0",
"next-intl": "^4.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^10.0.0",
"ts-dedent": "^2.2.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.44.1",
"vite": "^7.0.5",
"zx": "^8.7.1"
},
"peerDependencies": {
"next-intl": "^3 || ^4",
"storybook": "^9.0.0 || ^10.0.0"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.ts"
],
"previewEntries": [
"src/preview.ts"
]
},
"storybook": {
"displayName": "Storybook next-intl addon",
"supportedFrameworks": [
"next"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"overrides": {
"storybook": "$storybook"
}
}