-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"name": "@tapsilat/tapsilat-react",
"version": "2025.12.17",
"description": "React provider and hooks for the @tapsilat/tapsilat-js SDK.",
"keywords": [
"tapsilat",
"payments",
"sdk",
"react",
"hooks"
],
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tapsilat/tapsilat-react.git"
},
"author": "Tapsilat",
"bugs": {
"url": "https://github.com/tapsilat/tapsilat-react/issues"
},
"homepage": "https://github.com/tapsilat/tapsilat-react#readme",
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"dependencies": {
"@tapsilat/tapsilat-js": "^2025.12.17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"jsdom": "^27.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
}
}