-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "@flagsync/react-sdk",
"version": "0.8.0",
"description": "FlagSync SDK for React",
"author": "Mike Chabot",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flagsync/react-client"
},
"homepage": "https://www.flagsync.com",
"type": "module",
"types": "dist/legacy/index.d.ts",
"main": "dist/legacy/index.cjs",
"module": "dist/legacy/index.js",
"scripts": {
"build": "tsup",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "vitest"
},
"exports": {
".": {
"import": {
"types": "./dist/modern/index.d.ts",
"default": "./dist/modern/index.js"
},
"require": {
"types": "./dist/modern/index.d.cts",
"default": "./dist/modern/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=16",
"npm": ">=6"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"dependencies": {
"@flagsync/js-sdk": "0.7.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.13.10",
"@types/react": ">= 16.3.0",
"@types/react-dom": ">= 16.3.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.4.0",
"prettier": "^3.2.5",
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0",
"replace-in-file": "^7.2.0",
"semver": "^7.7.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.2.12",
"vitest": "^1.4.0"
}
}