You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
871 B
38 lines
871 B
{
|
|
"name": "node-notion2miro",
|
|
"version": "3.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"bin": "./dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "yarn dev:compile && yarn dev:run",
|
|
"dev:compile": "tsc",
|
|
"dev:run": "node dist/index.js",
|
|
"build": "./node_modules/.bin/esbuild index.ts --bundle --outfile=./dist/index.js --platform=node && pkg ."
|
|
},
|
|
"pkg": {
|
|
"targets": [
|
|
"node14-win-x64"
|
|
],
|
|
"options": [
|
|
"experimental-modules"
|
|
],
|
|
"outputPath": "exe"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^15.12.1",
|
|
"@vercel/ncc": "^0.28.6",
|
|
"concurrently": "^6.0.2",
|
|
"nodemon": "^2.0.7",
|
|
"pkg": "^5.2.1",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@notionhq/client": "^0.2.1",
|
|
"dotenv": "^9.0.2",
|
|
"esbuild": "^0.12.6",
|
|
"got": "^11.8.2",
|
|
"lowdb": "^2.1.0"
|
|
}
|
|
} |