-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
61 lines (61 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@unleash/proxy-client-react",
"version": "4.4.0",
"description": "React interface for working with unleash",
"type": "module",
"main": "./dist/unleash-react.umd.cjs",
"module": "./dist/unleash-react.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/unleash-react.js",
"require": "./dist/unleash-react.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"browser": "./dist/unleash-react.umd.cjs",
"files": [
"dist",
"LICENCE.txt"
],
"repository": {
"type": "git",
"url": "https://github.com/Unleash/unleash-proxy-react"
},
"scripts": {
"build": "tsc && vite build",
"prepack": "yarn run build",
"test": "vitest --watch",
"test:ci": "CI=true vitest run"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"unleash",
"react",
"feature-toggles"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.2.38",
"@vitest/coverage-istanbul": "^0.34.6",
"happy-dom": "^12.10.3",
"jsdom": "^23.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.3.2",
"unleash-proxy-client": "^3.5.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"peerDependencies": {
"unleash-proxy-client": "^3.5.2"
}
}