Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"license": "MIT",
"author": "Nelson Lai <[email protected]> (https://github.com/nelsonlaidev/)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"clean": "rm -rf .turbo",
"db:check": "pnpm with-env drizzle-kit check",
Expand Down
8 changes: 6 additions & 2 deletions packages/emails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"license": "MIT",
"author": "Nelson Lai <[email protected]> (https://github.com/nelsonlaidev/)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"dev": "email dev --port 3001 --dir src/templates",
"export": "email export",
Expand Down
8 changes: 6 additions & 2 deletions packages/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"license": "MIT",
"author": "Nelson Lai <[email protected]> (https://github.com/nelsonlaidev/)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"clean": "rm -rf .turbo",
"lint": "eslint . --max-warnings 0",
Expand Down
8 changes: 6 additions & 2 deletions packages/kv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"license": "MIT",
"author": "Nelson Lai <[email protected]> (https://github.com/nelsonlaidev/)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"clean": "rm -rf .turbo",
"lint": "eslint . --max-warnings 0",
Expand Down
8 changes: 6 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"license": "MIT",
"author": "Nelson Lai <[email protected]> (https://github.com/nelsonlaidev/)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"clean": "rm -rf .turbo",
"lint": "eslint . --max-warnings 0",
Expand Down
Loading