prepare 1.81 (#3329)

* update changelog for 1.81.0

* bump version to 1.81.0
This commit is contained in:
bjoern
2022-05-17 17:07:47 +02:00
committed by GitHub
parent eb80fa4eb0
commit 380d7e66b5
5 changed files with 60 additions and 59 deletions

View File

@@ -1,47 +1,11 @@
{
"name": "deltachat-node",
"version": "1.80.0",
"description": "node.js bindings for deltachat-core",
"main": "node/dist/index.js",
"types": "node/dist/index.d.ts",
"files": ["node/scripts/*", "*"],
"scripts": {
"install": "node node/scripts/install.js",
"install:prebuilds": "cd node && node-gyp-build \"npm run build:core\" \"npm run build:bindings:c:postinstall\"",
"clean": "rm -rf node/dist node/build node/prebuilds node/node_modules ./target",
"build": "npm run build:core && npm run build:bindings",
"build:core": "npm run build:core:rust && npm run build:core:constants",
"build:core:rust": "node node/scripts/rebuild-core.js",
"build:core:constants": "node node/scripts/generate-constants.js",
"build:bindings": "npm run build:bindings:c && npm run build:bindings:ts",
"build:bindings:c": "npm run build:bindings:c:c && npm run build:bindings:c:postinstall",
"build:bindings:c:c": "cd node && npx node-gyp rebuild",
"build:bindings:c:postinstall": "node node/scripts/postinstall.js",
"build:bindings:ts": "cd node && tsc",
"prebuildify": "cd node && prebuildify -t 16.13.0 --napi --strip --postinstall \"node scripts/postinstall.js --prebuild\"",
"download-prebuilds": "prebuildify-ci download",
"test": "npm run test:lint && npm run test:mocha",
"test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec",
"test:lint": "npm run lint",
"hallmark": "hallmark --fix",
"lint": "prettier --check \"node/lib/**/*.{ts,tsx}\"",
"lint-fix": "prettier --write \"node/lib/**/*.{ts,tsx}\" \"node/test/**/*.js\""
},
"homepage": "https://github.com/deltachat/deltachat-core-rust/tree/master/node",
"repository": {
"type": "git",
"url": "https://github.com/deltachat/deltachat-core-rust.git"
},
"engines": {
"node": ">=16.0.0"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"debug": "^4.1.1",
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.1.0",
"split2": "^3.1.1"
},
"description": "node.js bindings for deltachat-core",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^16.11.26",
@@ -58,5 +22,44 @@
"prettier": "^2.0.5",
"typedoc": "^0.17.0",
"typescript": "^3.9.10"
}
}
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"node/scripts/*",
"*"
],
"homepage": "https://github.com/deltachat/deltachat-core-rust/tree/master/node",
"license": "GPL-3.0-or-later",
"main": "node/dist/index.js",
"name": "deltachat-node",
"repository": {
"type": "git",
"url": "https://github.com/deltachat/deltachat-core-rust.git"
},
"scripts": {
"build": "npm run build:core && npm run build:bindings",
"build:bindings": "npm run build:bindings:c && npm run build:bindings:ts",
"build:bindings:c": "npm run build:bindings:c:c && npm run build:bindings:c:postinstall",
"build:bindings:c:c": "cd node && npx node-gyp rebuild",
"build:bindings:c:postinstall": "node node/scripts/postinstall.js",
"build:bindings:ts": "cd node && tsc",
"build:core": "npm run build:core:rust && npm run build:core:constants",
"build:core:constants": "node node/scripts/generate-constants.js",
"build:core:rust": "node node/scripts/rebuild-core.js",
"clean": "rm -rf node/dist node/build node/prebuilds node/node_modules ./target",
"download-prebuilds": "prebuildify-ci download",
"hallmark": "hallmark --fix",
"install": "node node/scripts/install.js",
"install:prebuilds": "cd node && node-gyp-build \"npm run build:core\" \"npm run build:bindings:c:postinstall\"",
"lint": "prettier --check \"node/lib/**/*.{ts,tsx}\"",
"lint-fix": "prettier --write \"node/lib/**/*.{ts,tsx}\" \"node/test/**/*.js\"",
"prebuildify": "cd node && prebuildify -t 16.13.0 --napi --strip --postinstall \"node scripts/postinstall.js --prebuild\"",
"test": "npm run test:lint && npm run test:mocha",
"test:lint": "npm run lint",
"test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec"
},
"types": "node/dist/index.d.ts",
"version": "1.81.0"
}