-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.25 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
{
"name": "storybook-addon-intl",
"version": "5.0.0",
"description": "Addon to provide locale switcher and react-intl for storybook",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./preview": {
"types": "./dist/preview.d.ts",
"import": "./dist/preview.js",
"require": "./dist/preview.cjs"
},
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"build:watch": "npm run build -- --watch",
"start": "run-p build:watch 'storybook --quiet'",
"storybook": "storybook dev --port 9001 --no-open",
"check-format": "prettier -c .",
"typecheck": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepack": "npm run build"
},
"files": [
"dist",
"preview.js",
"manager.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/truffls/storybook-addon-intl.git"
},
"keywords": [
"storybook",
"storybook-addon",
"storybook-addons",
"react-intl",
"i18n",
"l10n"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/truffls/storybook-addon-intl/issues"
},
"homepage": "https://github.com/truffls/storybook-addon-intl#readme",
"devDependencies": {
"@storybook/react": "^9.0.3",
"@storybook/react-vite": "^9.0.3",
"@storybook/react-webpack5": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.2.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^7.1.11",
"storybook": "^9.0.3",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.9"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-intl": "^6.0.0 || ^7.0.0",
"storybook": "^9.0.0"
},
"bundler": {
"exportEntry": "src/index.ts",
"managerEntry": "src/manager/index.ts",
"previewEntry": "src/preview/index.ts"
},
"storybook": {
"displayName": "storybook-addon-intl",
"supportedFrameworks": [
"react"
]
}
}