@jwork-space/strapi-sdk 1.0.2
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/README.md +292 -0
- package/dist/index.d.mts +539 -0
- package/dist/index.d.ts +539 -0
- package/dist/index.js +1043 -0
- package/dist/index.mjs +993 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jwork-space/strapi-sdk",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "SDK para Strapi con soporte para React Query y TypeScript",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"author": "Roman Ernesto Gonzalez Alas, Jonathan Fernando González Ramos",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://gitlab.com/Jona11/strapi-sdk"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
16
|
+
"prepublishOnly": "npm run build",
|
|
17
|
+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
18
|
+
"semantic-release": "semantic-release"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@tanstack/react-query": ">=5.90.0",
|
|
28
|
+
"antd": ">=5.0.0",
|
|
29
|
+
"axios": ">=1.7.0",
|
|
30
|
+
"dayjs": ">=1.11.10",
|
|
31
|
+
"qs": ">=6.11.0",
|
|
32
|
+
"react": ">=18.0.0",
|
|
33
|
+
"react-dom": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@semantic-release/git": "^10.0.1",
|
|
37
|
+
"@semantic-release/gitlab": "^13.2.9",
|
|
38
|
+
"@semantic-release/npm": "^13.1.2",
|
|
39
|
+
"@types/qs": "^6.14.0",
|
|
40
|
+
"@types/react": "^19.2.2",
|
|
41
|
+
"@types/react-dom": "^19.2.2",
|
|
42
|
+
"semantic-release": "^25.0.2",
|
|
43
|
+
"tsup": "^8.5.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"release": {
|
|
47
|
+
"plugins": [
|
|
48
|
+
"@semantic-release/commit-analyzer",
|
|
49
|
+
"@semantic-release/release-notes-generator",
|
|
50
|
+
"@semantic-release/npm",
|
|
51
|
+
"@semantic-release/gitlab",
|
|
52
|
+
[
|
|
53
|
+
"@semantic-release/git",
|
|
54
|
+
{
|
|
55
|
+
"assets": [
|
|
56
|
+
"package.json"
|
|
57
|
+
],
|
|
58
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist",
|
|
65
|
+
"README.md"
|
|
66
|
+
]
|
|
67
|
+
}
|