cpp.js 1.0.0-beta.5 → 1.0.0-beta.7
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 +3 -3
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
<a href="https://www.npmjs.com/package/cpp.js"><img alt="NPM version" src="https://img.shields.io/npm/v/cpp.js?style=for-the-badge" /></a>
|
|
14
14
|
<a href="https://github.com/bugra9/cpp.js/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/bugra9/cpp.js?style=for-the-badge" /></a>
|
|
15
|
-
<a href=""><img alt="Discussions" src="https://img.shields.io/github/discussions/bugra9/cpp.js?style=for-the-badge" /></a>
|
|
16
|
-
<a href=""><img alt="
|
|
15
|
+
<a href="https://github.com/bugra9/cpp.js/discussions"><img alt="Discussions" src="https://img.shields.io/github/discussions/bugra9/cpp.js?style=for-the-badge" /></a>
|
|
16
|
+
<a href="https://github.com/bugra9/cpp.js/issues"><img alt="Issues" src="https://img.shields.io/github/issues/bugra9/cpp.js?style=for-the-badge" /></a>
|
|
17
17
|
</div>
|
|
18
18
|
|
|
19
19
|
<h3 align="center">
|
|
20
|
-
<a href="https://cpp.js.org/docs/guide/getting-started/
|
|
20
|
+
<a href="https://cpp.js.org/docs/guide/getting-started/introduction">Getting Started</a>
|
|
21
21
|
<span> · </span>
|
|
22
22
|
<a href="https://cpp.js.org/docs/guide/integrate-into-existing-project/overview">Integrate Into Existing Project</a>
|
|
23
23
|
<span> · </span>
|
package/package.json
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cpp.js",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://cpp.js.org",
|
|
7
7
|
"repository": "https://github.com/bugra9/cpp.js.git",
|
|
8
|
+
"description": "Bind C++ to JavaScript without extra code. Cpp.js supports WebAssembly and React Native for cross-platform compatibility.",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"WebAssembly",
|
|
11
|
+
"React Native",
|
|
12
|
+
"bind",
|
|
13
|
+
"c++",
|
|
14
|
+
"emscripten",
|
|
15
|
+
"embind",
|
|
16
|
+
"swig"
|
|
17
|
+
],
|
|
8
18
|
"bin": {
|
|
9
19
|
"cpp.js": "./src/bin.js",
|
|
10
20
|
"cppjs": "./src/bin.js"
|