-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 844 Bytes
/
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": "zeroqs-core",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"prettier",
"eslint",
"tsconfig",
"builder",
"vitest"
],
"private": true,
"author": {
"name": "zeroqs",
"url": "https://github.com/zeroqs"
},
"repository": {
"url": "https://github.com/zeroqs/core"
},
"bugs": {
"url": "https://github.com/zeroqs/core/issues"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"deploy": "turbo run deploy",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"change": "beachball change --no-commit",
"release": "beachball publish --yes"
},
"devDependencies": {
"beachball": "^2.43.1",
"prettier": "^3.2.5",
"turbo": "^2.0.14",
"typescript": "^5.4.5"
},
"workspaces": [
"tools/*"
]
}