@savoirfairelinux/jami-core 0.1.0 → 0.2.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 (1) hide show
  1. package/package.json +8 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@savoirfairelinux/jami-core",
3
- "version": "0.1.0",
4
- "description": "Jami daemon Node.js bindings — native SWIG addon with TypeScript types.",
3
+ "version": "0.2.0",
4
+ "description": "Jami daemon Node.js bindings — native SWIG N-API addon with TypeScript types.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -20,14 +20,17 @@
20
20
  "scripts": {
21
21
  "build": "tsc --build",
22
22
  "clean": "rm -rf dist *.tsbuildinfo",
23
+ "lint": "eslint src --max-warnings 0",
24
+ "format": "prettier --write src",
25
+ "format:check": "prettier --check src",
23
26
  "prepublishOnly": "npm run clean && npm run build",
24
27
  "pack-native": "node scripts/pack-native.mjs",
25
28
  "publish-platform": "node scripts/pack-native.mjs && npm publish --workspace npm/$(node -e \"process.stdout.write(process.platform+'-'+process.arch)\")"
26
29
  },
27
30
  "optionalDependencies": {
28
- "@savoirfairelinux/jami-core-darwin-arm64": "0.1.0",
29
- "@savoirfairelinux/jami-core-linux-x64": "0.1.0",
30
- "@savoirfairelinux/jami-core-linux-arm64": "0.1.0"
31
+ "@savoirfairelinux/jami-core-darwin-arm64": "0.2.0",
32
+ "@savoirfairelinux/jami-core-linux-x64": "0.2.0",
33
+ "@savoirfairelinux/jami-core-linux-arm64": "0.2.0"
31
34
  },
32
35
  "devDependencies": {
33
36
  "typescript": "~5.5.4"