-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@flipt-io/flipt-client-react",
"version": "0.1.0",
"description": "Flipt Client Evaluation React SDK",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Flipt Devs <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/flipt-io/flipt-client-sdks/tree/main/flipt-client-react"
},
"keywords": [
"flipt",
"feature flags",
"feature toggles",
"react"
],
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"scripts": {
"fmt": "prettier --config .prettierrc 'src/**/*.@(ts|tsx|js)' '**/*.@(ts|tsx|js)' --write",
"lint": "eslint 'src/**/*.@(ts|tsx|js)' '**/*.@(ts|tsx|js)'",
"test": "jest",
"build": "rollup -c"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^12.1.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.9.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"prettier": "^3.3.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^4.22.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@flipt-io/flipt-client-browser": "^0.3.1"
}
}