-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "@emqx/shared-ui",
"author": "EMQ FE Team",
"description": "Provides Shared UI components, utils, i18n, and more for consistent interfaces and code reuse across EMQX apps.",
"homepage": "https://emqx.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/emqx/shared-ui"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky install",
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"format": "prettier --write .",
"release": "turbo run release",
"version:patch": "turbo run version:patch",
"version:minor": "turbo run version:minor",
"version:major": "turbo run version:major",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.9.0",
"@vitest/coverage-istanbul": "^0.34.6",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}