-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.14 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.14 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "api",
"namespace": "@hulla",
"description": "The next-gen API/RPC manager 🚀",
"author": {
"name": "Samuel Hulla",
"email": "hulla@hulla.dev",
"url": "https://hulla.dev"
},
"maintainers": [
"Samuel Hulla <hulla@hulla.dev>"
],
"homepage": "https://hulla.dev/projects/api",
"repository": {
"type": "git",
"url": "https://github.com/hulladev/api.git",
"directory": "packages/api"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"clean": "turbo clean && rm -rf pnpm-lock.yaml node_modules",
"bundle": "turbo run lint format test build && pnpm changeset && pnpm changeset version",
"release": "pnpm changeset publish",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"bunchee": "latest",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji": "^1.3.2-canary.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expect-type": "^0.19.0",
"husky": "^9.0.11",
"msw": "^2.2.14",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"publint": "^0.2.7",
"turbo": "^2.0.9",
"typescript": "^5.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.6.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"skipScope": true,
"scopes": [],
"types": [
{
"emoji": "✅",
"code": ":white_check_mark: feat:",
"description": "a new functionality",
"name": "feat"
},
{
"emoji": "🐞",
"code": ":lady_beetle: fix:",
"description": "a bug fix",
"name": "fix"
},
{
"emoji": "🔧",
"code": ":wrench: update:",
"description": "a code change that neither fixes a bug nor adds a feature",
"name": "update"
},
{
"emoji": "📚",
"code": ":books: docs:",
"description": "documentations",
"name": "docs"
},
{
"emoji": "🧪",
"code": ":test_tube: tests:",
"description": "tests",
"name": "tests"
},
{
"emoji": "🪛",
"code": ":screwdriver: config:",
"description": "configuration files",
"name": "config"
},
{
"emoji": "🤖",
"code": ":robot: devops:",
"description": "ci/cd or other form of automation",
"name": "devops"
},
{
"emoji": "♻️",
"code": ":recycle: cleanup:",
"description": "code cleanup",
"name": "cleanup"
},
{
"emoji": "📦",
"code": ":package: release:",
"description": "new release bundle",
"name": "release"
}
]
}
}
}