-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.51 KB
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
73
74
75
76
77
78
79
80
81
82
{
"name": "@bucketeer/react-client-sdk",
"version": "0.1.0",
"description": "Bucketeer React Client SDK - A TypeScript React library for feature flagging",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"lint:check": "eslint src/**/*.{ts,tsx}",
"format": "prettier --write src/**/*.{ts,tsx}",
"format:check": "prettier --check src/**/*.{ts,tsx}",
"type-check": "tsc --noEmit",
"prepare": "pnpm build",
"example:start": "cd example && pnpm dev",
"example:build": "cd example && pnpm build",
"test:e2e": "pnpm exec playwright test",
"publish-npm": "pnpm build && pnpm publish --access public"
},
"keywords": [
"bucketeer",
"react",
"feature-flags",
"typescript",
"sdk"
],
"author": "Bucketeer Team",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "22.13.14",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.53.0",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": ">=18.2.0 < 20.0.0",
"react-dom": ">=18.2.0 < 20.0.0",
"@bucketeer/js-client-sdk": ">=2.6.1 < 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bucketeer-io/react-client-sdk.git"
},
"bugs": {
"url": "https://github.com/bucketeer-io/react-client-sdk/issues"
},
"homepage": "https://github.com/bucketeer-io/react-client-sdk#readme",
"packageManager": "pnpm@10.11.1"
}