koda-format 1.0.0 → 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.
Files changed (2) hide show
  1. package/SPEC.md +3 -1
  2. package/package.json +12 -5
package/SPEC.md CHANGED
@@ -3,7 +3,9 @@
3
3
  **Full name:** Compact Object Data Architecture
4
4
  **Specification name:** KDF (KODA Data Format)
5
5
  **Version:** 1.0
6
- **Status:** Draft
6
+ **Status:** Draft
7
+
8
+ **npm package:** [koda-format](https://www.npmjs.com/package/koda-format)
7
9
 
8
10
  ---
9
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koda-format",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "Compact Object Data Architecture — text and binary format with canonical encoding",
6
6
  "main": "dist/index.js",
@@ -24,6 +24,14 @@
24
24
  ],
25
25
  "author": "",
26
26
  "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/hghukasyan/koda-format.git"
30
+ },
31
+ "homepage": "https://github.com/hghukasyan/koda-format#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/hghukasyan/koda-format/issues"
34
+ },
27
35
  "dependencies": {
28
36
  "node-addon-api": "^8.0.0"
29
37
  },
@@ -31,14 +39,13 @@
31
39
  "node": ">=18"
32
40
  },
33
41
  "files": [
42
+ "README.md",
43
+ "SPEC.md",
34
44
  "dist",
35
45
  "binding.gyp",
36
- "native",
37
- "README.md",
38
- "SPEC.md"
46
+ "native"
39
47
  ],
40
48
  "devDependencies": {
41
- "@types/node": "^20.11.0",
42
49
  "@types/jest": "^29.5.12",
43
50
  "@types/node": "^20.11.0",
44
51
  "jest": "^29.7.0",