-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "@cedeber/frontafino",
"version": "1.1.0-beta.2",
"description": "Utilities and React Hooks",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.production.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedeber/frontafino.git"
},
"keywords": [
"utility",
"react",
"hooks"
],
"author": "Cédric Eberhardt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cedeber/frontafino/issues"
},
"homepage": "https://github.com/cedeber/frontafino#readme",
"devDependencies": {
"@types/node": "^16.11.27",
"@types/ramda": "^0.28.20",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.7.2"
},
"dependencies": {
"ramda": "^0.28.0"
}
}