44 lines
1012 B
JSON
44 lines
1012 B
JSON
{
|
|
"name": "@cubetiq/vlogs",
|
|
"version": "0.0.1",
|
|
"description": "A simple way to collect logs and send to the server via simple SDK.",
|
|
"main": "dist/index.js",
|
|
"private": false,
|
|
"dist": {
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc -w",
|
|
"start": "node dist/index.js",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/CUBETIQ/vlogs_sdk_ts.git"
|
|
},
|
|
"keywords": [
|
|
"vlogs"
|
|
],
|
|
"author": "Sambo Chea <sombochea@cubetiqs.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/CUBETIQ/vlogs_sdk_ts/issues"
|
|
},
|
|
"homepage": "https://github.com/CUBETIQ/vlogs_sdk_ts#readme",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^20.2.5",
|
|
"@types/uuid": "^9.0.1",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.4.0",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|