@supashiphq/react-sdk 1.0.1 → 1.0.3
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/SECURITY.md +15 -0
- package/package.json +11 -6
package/SECURITY.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
The latest published minor version of `@supashiphq/react-sdk` is actively supported.
|
|
6
|
+
|
|
7
|
+
## Reporting a Vulnerability
|
|
8
|
+
|
|
9
|
+
If you discover a security issue, do not open a public GitHub issue.
|
|
10
|
+
|
|
11
|
+
- Email: `security@supaship.com`
|
|
12
|
+
- Include: impact, reproduction steps, and affected versions
|
|
13
|
+
- Expected response: acknowledgement within 3 business days
|
|
14
|
+
|
|
15
|
+
We will investigate, coordinate a fix, and publish a security release as needed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supashiphq/react-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Supaship SDK for React",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist",
|
|
22
22
|
"README.md",
|
|
23
|
-
"LICENSE"
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"SECURITY.md"
|
|
24
25
|
],
|
|
25
26
|
"scripts": {
|
|
26
27
|
"clean": "rimraf dist",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"react-dom": ">=16.8.0"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@supashiphq/javascript-sdk": "^1.0.
|
|
43
|
+
"@supashiphq/javascript-sdk": "^1.0.3"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"@jest/globals": "^30.0.0",
|
|
@@ -69,11 +70,15 @@
|
|
|
69
70
|
"license": "MIT",
|
|
70
71
|
"repository": {
|
|
71
72
|
"type": "git",
|
|
72
|
-
"url": "https://github.com/SupashipHQ/sdk",
|
|
73
|
+
"url": "https://github.com/SupashipHQ/javascript-sdk",
|
|
73
74
|
"directory": "packages/react"
|
|
74
75
|
},
|
|
75
76
|
"bugs": {
|
|
76
|
-
"url": "https://github.com/SupashipHQ/sdk/issues"
|
|
77
|
+
"url": "https://github.com/SupashipHQ/javascript-sdk/issues"
|
|
77
78
|
},
|
|
78
|
-
"homepage": "https://supaship.com"
|
|
79
|
+
"homepage": "https://supaship.com",
|
|
80
|
+
"publishConfig": {
|
|
81
|
+
"access": "public",
|
|
82
|
+
"provenance": true
|
|
83
|
+
}
|
|
79
84
|
}
|