-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@texoport/mysqueue",
"type": "module",
"version": "0.0.10",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "A template for typescript + bun libraries",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "bun run build.ts && tsc",
"prepublishOnly": "bun run build && bun test",
"test": "bun test",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public",
"release:patch": "bun run build && bun test && bun run publish:patch",
"release:minor": "bun run build && bun test && bun run publish:minor",
"release:major": "bun run build && bun test && bun run publish:major"
},
"files": [
"dist"
],
"keywords": [
"bun"
],
"license": "MIT",
"homepage": "https://github.com/saiashirwad/lazy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/saiashirwad/lazy.git"
},
"bugs": "https://github.com/saiashirwad/lazy/issues",
"author": "Sai Ashirwad <[email protected]>",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.10",
"typescript": "^5.7.2"
},
"dependencies": {
"@effect/sql": "^0.23.3",
"@effect/sql-mysql2": "^0.24.4",
"@paralleldrive/cuid2": "^2.2.2",
"effect": "^3.11.7",
"mysql2": "^3.11.5",
"zod": "^3.24.1"
}
}