tempest-react-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,140 @@
1
+ {
2
+ "name": "tempest-react-sdk",
3
+ "version": "0.1.0",
4
+ "description": "SDK público da Tempest com componentes, hooks e integrações para projetos React.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Mauricio Benjamin <mauriciobenjamin700@gmail.com>",
8
+ "homepage": "https://github.com/mauriciobenjamin700/tempest-react-sdk",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/mauriciobenjamin700/tempest-react-sdk.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/mauriciobenjamin700/tempest-react-sdk/issues"
15
+ },
16
+ "keywords": [
17
+ "react",
18
+ "sdk",
19
+ "tempest",
20
+ "ui",
21
+ "components",
22
+ "hooks"
23
+ ],
24
+ "files": [
25
+ "dist",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "main": "./dist/tempest-react-sdk.cjs",
30
+ "module": "./dist/tempest-react-sdk.js",
31
+ "types": "./dist/index.d.ts",
32
+ "sideEffects": [
33
+ "**/*.css"
34
+ ],
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/tempest-react-sdk.js",
39
+ "require": "./dist/tempest-react-sdk.cjs"
40
+ },
41
+ "./styles.css": "./dist/styles.css",
42
+ "./package.json": "./package.json"
43
+ },
44
+ "scripts": {
45
+ "dev": "vite build --watch",
46
+ "build": "tsc -b tsconfig.build.json && vite build",
47
+ "typecheck": "tsc -b tsconfig.json --noEmit",
48
+ "lint": "eslint .",
49
+ "format": "prettier --write .",
50
+ "format:check": "prettier --check .",
51
+ "test": "vitest",
52
+ "test:run": "vitest run",
53
+ "test:coverage": "vitest run --coverage",
54
+ "changeset": "changeset",
55
+ "version": "changeset version",
56
+ "release": "npm run build && changeset publish",
57
+ "clean": "rm -rf dist coverage",
58
+ "prepare": "husky",
59
+ "prepublishOnly": "npm run typecheck && npm run lint && npm run test:run && npm run build"
60
+ },
61
+ "lint-staged": {
62
+ "*.{ts,tsx}": [
63
+ "eslint --fix",
64
+ "prettier --write"
65
+ ],
66
+ "*.{json,md,css}": [
67
+ "prettier --write"
68
+ ]
69
+ },
70
+ "peerDependencies": {
71
+ "@tanstack/react-query": "^5.0.0",
72
+ "dexie": "^4.4.2",
73
+ "lucide-react": ">=0.400.0",
74
+ "react": "^18.0.0 || ^19.0.0",
75
+ "react-dom": "^18.0.0 || ^19.0.0",
76
+ "react-hook-form": "^7.76.0",
77
+ "zod": "^3.23.0 || ^4.0.0",
78
+ "zustand": "^4.0.0 || ^5.0.0"
79
+ },
80
+ "peerDependenciesMeta": {
81
+ "@tanstack/react-query": {
82
+ "optional": true
83
+ },
84
+ "dexie": {
85
+ "optional": true
86
+ },
87
+ "lucide-react": {
88
+ "optional": true
89
+ },
90
+ "react-hook-form": {
91
+ "optional": true
92
+ },
93
+ "zod": {
94
+ "optional": true
95
+ },
96
+ "zustand": {
97
+ "optional": true
98
+ }
99
+ },
100
+ "devDependencies": {
101
+ "@changesets/cli": "^2.31.0",
102
+ "@eslint/js": "^9.36.0",
103
+ "@tanstack/react-query": "^5.90.0",
104
+ "@testing-library/jest-dom": "^6.9.1",
105
+ "@testing-library/react": "^16.3.2",
106
+ "@testing-library/user-event": "^14.6.1",
107
+ "@types/node": "^24.0.0",
108
+ "@types/react": "^19.1.0",
109
+ "@types/react-dom": "^19.1.0",
110
+ "@vitejs/plugin-react": "^5.0.0",
111
+ "@vitest/coverage-v8": "^4.1.6",
112
+ "dexie": "^4.4.2",
113
+ "eslint": "^9.36.0",
114
+ "eslint-plugin-react-hooks": "^5.2.0",
115
+ "eslint-plugin-react-refresh": "^0.4.22",
116
+ "fake-indexeddb": "^6.2.5",
117
+ "globals": "^16.0.0",
118
+ "husky": "^9.1.7",
119
+ "jsdom": "^29.1.1",
120
+ "lint-staged": "^17.0.5",
121
+ "lucide-react": "^0.575.0",
122
+ "prettier": "^3.8.3",
123
+ "react": "^19.1.0",
124
+ "react-dom": "^19.1.0",
125
+ "react-hook-form": "^7.76.0",
126
+ "typescript": "~5.9.0",
127
+ "typescript-eslint": "^8.45.0",
128
+ "vite": "^7.0.0",
129
+ "vite-plugin-dts": "^4.5.0",
130
+ "vitest": "^4.1.6",
131
+ "zod": "^4.0.0",
132
+ "zustand": "^5.0.0"
133
+ },
134
+ "publishConfig": {
135
+ "access": "public"
136
+ },
137
+ "engines": {
138
+ "node": ">=20.19"
139
+ }
140
+ }