-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "use-safe-async-mount",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"source": "src/index.tsx",
"repository": "git://github.com/dilan-dio4/use-safe-async-mount.git",
"scripts": {
"build": "tsc",
"prepare": "pnpm run build",
"dev": "vite",
"build-test": "vite build",
"prettier-format": "prettier --config prettier.config.js 'src/**/*{.ts,.tsx,.js,.jsx}' --write",
"pub": "npm version --no-commit-hooks --no-git-tag-version patch && pnpm run build && git add . && git commit -m \"version bump\" && git push && npm publish"
},
"author": "Dilan Ozkaynak",
"files": [
"dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"peerDependencies": {
"react": ">=17.0.2"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vite-tsconfig-paths": "^3.5.2"
}
}