-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 929 Bytes
/
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
{
"name": "js-utils",
"version": "1.0.0",
"keywords": [
"validation",
"serviceWorker"
],
"author": {
"name": "Václav Daněk",
"email": "vaclav.danek@seznam.cz"
},
"license": "MIT",
"homepage": "https://github.com/VaclavDanek/js-utils",
"repository": {
"type": "git",
"url": "https://github.com/VaclavDanek/js-utils"
},
"bugs": {
"url": "https://github.com/VaclavDanek/js-utils/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel lib --out-dir dist --extensions \".ts,.tsx\" && tsc && minify dist -d dist"
},
"dependencies": {
"@types/react": "^18.3.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.21.0",
"babel-minify": "^0.5.2",
"typescript": "^5.0.2"
}
}