-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.67 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.67 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@pubflow/flowfull-client",
"version": "0.2.5",
"description": "Universal HTTP client for Flowfull backends with advanced query building, filter operators, and session management",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
},
"./react-native": {
"types": "./dist/react-native/index.d.ts",
"import": "./dist/react-native/index.mjs",
"require": "./dist/react-native/index.js"
},
"./nextjs": {
"types": "./dist/nextjs/index.d.ts",
"import": "./dist/nextjs/index.mjs",
"require": "./dist/nextjs/index.js"
},
"./nextjs/server": {
"types": "./dist/nextjs/server.d.ts",
"import": "./dist/nextjs/server.mjs",
"require": "./dist/nextjs/server.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"keywords": [
"flowfull",
"pubflow",
"http-client",
"api-client",
"query-builder",
"filter-operators",
"react",
"react-native",
"nextjs",
"typescript"
],
"author": {
"name": "Pubflow, Inc.",
"email": "enterprise@pubflow.com",
"url": "https://pubflow.com"
},
"license": "AGPL-3.0-only",
"funding": {
"type": "commercial",
"url": "https://pubflow.com/dual-licensing"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubflow/flowfull-client.git"
},
"bugs": {
"url": "https://github.com/pubflow/flowfull-client/issues"
},
"homepage": "https://pubflow.com",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"@vitest/ui": "^1.0.4",
"@vitest/coverage-v8": "^1.0.4"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
}
}