-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 KB
/
package.json
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
{
"name": "react-onboarding",
"version": "1.5.0",
"types": "dist/types.ts",
"description": "Simple Wizard component for React",
"type": "module",
"main": "dist/wizard.umd.min.js",
"module": "dist/wizard.es.min.js",
"repository": "git@github.com:ilyapasyuk/react-wizard-tour.git",
"files": [
"dist",
"README.md"
],
"author": "pasyuk.com@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilyapasyuk/react-wizard-tour/issues"
},
"private": false,
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-lib-inject-css": "^2.0.0",
"vite-plugin-static-copy": "^1.0.1"
}
}