diff --git a/packages/original/package.json b/packages/original/package.json index 79bda7be..99702b35 100644 --- a/packages/original/package.json +++ b/packages/original/package.json @@ -1,9 +1,16 @@ { - "name": "bibata_cursor_original", + "name": "original", "version": "1.0.0", "description": "Original Bibata 🚀", "main": "index.js", "author": "Kaiz Khatri", "license": "GPL-3.0", - "private": true + "private": true, + "devDependencies": { + "nodemon": "^2.0.4", + "ts-node": "^8.10.2", + "tslint": "^6.1.3", + "typescript": "^3.9.7" + }, + "dependencies": {} } diff --git a/packages/round/package.json b/packages/round/package.json index 11cd69a7..0409d78c 100644 --- a/packages/round/package.json +++ b/packages/round/package.json @@ -1,9 +1,16 @@ { - "name": "bibata_cursor_round", + "name": "round", "version": "1.0.0", "description": "Rounded Corner Bibata 🏳️‍🌈", "main": "index.js", "author": "Kaiz Khatri", "license": "GPL-3.0", - "private": true + "private": true, + "devDependencies": { + "nodemon": "^2.0.4", + "ts-node": "^8.10.2", + "tslint": "^6.1.3", + "typescript": "^3.9.7" + }, + "dependencies": {} } diff --git a/packages/shared/package.json b/packages/shared/package.json new file mode 100644 index 00000000..0a644f28 --- /dev/null +++ b/packages/shared/package.json @@ -0,0 +1,12 @@ +{ + "name": "shared", + "version": "1.0.0", + "description": "Shared Components", + "main": "index.js", + "author": "Kaiz Khatri", + "license": "GPL-3.0", + "private": true, + "devDependencies": { + "@types/puppeteer": "^3.0.1" + } +}