- Add index.ts with SDK usage examples - Add package.json with dependencies - Add .gitignore - Update README with quick start guide
19 lines
357 B
JSON
19 lines
357 B
JSON
{
|
|
"name": "hot-repo",
|
|
"version": "1.0.0",
|
|
"description": "Lubes Hot Repo - Example Project",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "ts-node index.ts",
|
|
"build": "tsc",
|
|
"deploy": "lubes deploy"
|
|
},
|
|
"dependencies": {
|
|
"@lubes/sdk": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0",
|
|
"ts-node": "^10.0.0"
|
|
}
|
|
}
|