-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1003 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
39
40
41
{
"name": "use-future",
"version": "0.0.5",
"type": "module",
"description": "Typesafe promise handling for React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"clean": "rm -rf node_modules dist",
"test": "vitest run",
"format": "prettier -w ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/airgap/use-future.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/airgap/use-future/issues"
},
"homepage": "https://github.com/airgap/use-future#readme",
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@types/react": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.0.0",
"prettier-eslint-cli": "^8.0.1",
"typescript": "^5.0.0",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"files": [
"dist"
]
}