datasquirel/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2023-05-03 06:16:29 +00:00
{
2024-11-08 21:58:25 +00:00
"name": "@moduletrace/datasquirel",
2025-01-10 19:10:28 +00:00
"version": "3.4.0",
2023-05-03 06:25:12 +00:00
"description": "Cloud-based SQL data management tool",
2025-01-10 19:10:28 +00:00
"main": "dist/index.js",
2023-08-12 13:36:18 +00:00
"bin": {
2025-01-10 19:10:28 +00:00
"dsql-watch": "dist/engine/dsql.js",
"dsql-dump": "dist/engine/dump.js"
2023-08-12 13:36:18 +00:00
},
2024-11-08 15:41:22 +00:00
"scripts": {
2025-01-10 19:10:28 +00:00
"build": "bun build ./index.ts --outdir ./dist --target node --format esm",
"dev": "bun build ./index.ts --outdir ./dist --target node --format esm --watch"
2024-11-08 15:41:22 +00:00
},
2023-05-03 06:25:12 +00:00
"repository": {
"type": "git",
2024-10-14 12:44:31 +00:00
"url": "git+https://github.com/BenjaminToby/dsql.git"
2023-05-03 06:25:12 +00:00
},
"keywords": [
"SQL",
"Cloud",
"Storage",
"API",
"Data",
"Storage"
],
"author": "Benjamin Toby",
"license": "ISC",
"bugs": {
2024-10-14 12:44:31 +00:00
"url": "https://github.com/BenjaminToby/dsql/issues"
2023-05-03 06:25:12 +00:00
},
2023-08-12 13:36:18 +00:00
"homepage": "https://datasquirel.com/",
"dependencies": {
2024-11-06 06:26:23 +00:00
"@types/ace": "^0.0.52",
2024-12-06 10:31:24 +00:00
"@types/lodash": "^4.17.13",
"@types/mysql": "^2.15.21",
"@types/next": "^9.0.0",
"@types/node": "^22.7.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^19.0.0",
2024-11-06 06:26:23 +00:00
"@types/tinymce": "^4.6.9",
2023-08-12 13:36:18 +00:00
"dotenv": "^16.3.1",
2024-11-06 06:26:23 +00:00
"generate-password": "^1.7.1",
2024-12-06 10:31:24 +00:00
"google-auth-library": "^9.15.0",
2024-11-06 06:26:23 +00:00
"lodash": "^4.17.21",
2024-07-13 06:23:46 +00:00
"mysql": "^2.18.1",
2024-11-06 06:26:23 +00:00
"nodemailer": "^6.9.14",
2024-12-06 10:31:24 +00:00
"react": "^19.0.0",
"react-dom": "^19.0.0",
2024-11-06 06:26:23 +00:00
"sanitize-html": "^2.13.1",
"serverless-mysql": "^1.5.5"
2025-01-10 19:10:28 +00:00
},
"devDependencies": {
"@types/nodemailer": "^6.4.17"
2023-08-12 13:36:18 +00:00
}
2023-05-03 06:16:29 +00:00
}