mirror of https://github.com/nocodb/nocodb
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.
33 lines
728 B
33 lines
728 B
{ |
|
"name": "Noco", |
|
"version": "1.0.0", |
|
"description": "", |
|
"main": "index.js", |
|
"bin": "index.js", |
|
"scripts": { |
|
"test": "echo \"Error: no test specified\" && exit 1", |
|
"start": "node index.js", |
|
"upgrade": "npm uninstall --save nocodb && npm install --save nocodb", |
|
"build": "npx pkg . --out-path dist --compress GZip" |
|
}, |
|
"pkg": { |
|
"assets": [ |
|
"node_modules/**/*" |
|
], |
|
"targets": [ |
|
"node16-linux-arm64", |
|
"node16-macos-arm64", |
|
"node16-win-arm64", |
|
"node16-linux-x64", |
|
"node16-macos-x64", |
|
"node16-win-x64" |
|
] |
|
}, |
|
"keywords": [], |
|
"author": "", |
|
"license": "ISC", |
|
"dependencies": { |
|
"express": "^4.17.1", |
|
"nocodb-daily": "0.91.10" |
|
} |
|
}
|
|
|