-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 891 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 891 Bytes
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
{
"name": "@codifytools/react-package-vite-boilerplate",
"version": "1.0.8",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"npm:details": "npm pack --dry-run",
"npm:publish": "npm run build && npm publish --access public",
"storybook": "storybook dev"
},
"keywords": [
"react",
"vite",
"storybook",
"boilerplate"
],
"author": "Juan Pablo Mejia Duque",
"repository": {
"type": "git",
"url": "git+https://github.com/codifytools/react-package-vite-boilerplate.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@storybook/react-vite": "^9.0.4",
"vite": "^6.3.5"
}
}