-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "@delashum/vncache",
"version": "1.0.4",
"description": "a library to simplify API requests and caching with a REST backend",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"build": "rm -rf dist/ && tsc --project tsconfig.build.json"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/delashum/vncache.git"
},
"author": "delashum",
"license": "ISC",
"bugs": {
"url": "https://github.com/delashum/vncache/issues"
},
"homepage": "https://github.com/delashum/vncache#readme",
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.0",
"@types/react": "^17.0.53",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.4",
"react": "^17",
"react-test-renderer": "^17",
"ts-jest": "^29.0.5"
},
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": "^17"
},
"keywords": [
"cache",
"api"
]
}