datasquirel/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

2023-05-03 06:16:29 +00:00
{
2023-05-03 06:25:12 +00:00
"name": "datasquirel",
2024-11-08 20:44:24 +00:00
"version": "2.5.3",
2023-05-03 06:25:12 +00:00
"description": "Cloud-based SQL data management tool",
"main": "index.js",
2023-08-12 13:36:18 +00:00
"bin": {
2023-08-12 16:00:11 +00:00
"dsql-watch": "./engine/dsql.js",
"dsql-dump": "./engine/dump.js"
2023-08-12 13:36:18 +00:00
},
2024-11-08 15:41:22 +00:00
"scripts": {
2024-11-08 15:44:31 +00:00
"compile": "tsc --declaration --allowJs --emitDeclarationOnly --resolveJsonModule index.js",
2024-11-08 19:15:37 +00:00
"compile:full": "rm -rf dist && tsc --declaration --allowJs --outDir dist --emitDeclarationOnly --resolveJsonModule index.js && cat ./dist/index.d.ts > ./index.d.ts"
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",
"@types/react": "^18.3.12",
"@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",
"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",
"sanitize-html": "^2.13.1",
"serverless-mysql": "^1.5.5"
2023-08-13 13:56:56 +00:00
},
"devDependencies": {
2024-11-06 06:26:23 +00:00
"@types/lodash": "^4.17.13",
2024-10-14 06:49:01 +00:00
"@types/mysql": "^2.15.21",
"@types/node": "^22.7.5"
2023-08-12 13:36:18 +00:00
}
2023-05-03 06:16:29 +00:00
}