@stringpush/runtime-core 0.1.1 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +8 -7
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @stringpush/runtime-core
2
+
3
+ Framework-agnostic translation runtime — manifest fetch, CDN bundle load, ICU `t()`. Used directly by React Native; web apps typically use [@stringpush/sdk](https://www.npmjs.com/package/@stringpush/sdk).
4
+
5
+ ## Documentation
6
+
7
+ - [Manifest & bundles](https://docs.platform.stringpush.com/concepts/manifest-and-bundles)
8
+ - [Getting started](https://docs.platform.stringpush.com/getting-started)
9
+
10
+ ## HTTP contract
11
+
12
+ The package ships sample manifest and bundle JSON under `fixtures/` for contract tests and native adapter reference. See `fixtures/README.md` in the tarball for endpoint shapes and auth rules.
13
+
14
+ ## Security
15
+
16
+ Report vulnerabilities to [security@stringpush.com](mailto:security@stringpush.com).
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@stringpush/runtime-core",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "Framework-agnostic translation runtime — manifest, bundles, ICU t()",
5
+ "homepage": "https://docs.platform.stringpush.com/concepts/manifest-and-bundles",
6
+ "bugs": {
7
+ "url": "https://stringpush.com/support",
8
+ "email": "support@stringpush.com"
9
+ },
5
10
  "publishConfig": {
6
11
  "access": "public",
7
12
  "registry": "https://registry.npmjs.org"
8
13
  },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/StringPush/translations.git",
12
- "directory": "packages/runtime-core"
13
- },
14
14
  "type": "module",
15
15
  "main": "./dist/index.umd.cjs",
16
16
  "module": "./dist/index.mjs",
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "files": [
31
31
  "dist",
32
- "fixtures"
32
+ "fixtures",
33
+ "README.md"
33
34
  ],
34
35
  "scripts": {
35
36
  "build": "tsup",