-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.71 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.71 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
{
"name": "style",
"scripts": {
"lint": "turbo lint",
"build": "turbo build",
"test": "turbo test",
"dev": "turbo dev",
"prepare": "husky"
},
"author": {
"name": "Samuel Hulla",
"email": "hulla@hulla.dev",
"url": "https://hulla.dev"
},
"maintainers": [
"Samuel Hulla <hulla@hulla.dev>"
],
"homepage": "https://hulla.dev/projects/style",
"repository": {
"type": "git",
"url": "https://github.com/hulladev/style.git",
"directory": "packages/style"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"bunchee": "^5.2.1",
"commitizen": "^4.3.0",
"cz-emoji": "1.3.2-canary.2",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"turbo": "^2.0.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"packageManager": "pnpm@9.4.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"skipScope": true,
"scopes": [
"package",
"examples",
"repo"
],
"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"
}
]
}
}
}