-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 914 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
{
"name": "vesper",
"version": "0.1.6",
"private": true,
"homepage": "https://github.com/thegogod/vesper",
"bugs": "https://github.com/thegogod/vesper/issues",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/thegogod/vesper.git"
},
"workspaces": [
"packages/*"
],
"keywords": [
"javascript",
"frontend",
"development"
],
"scripts": {
"clean": "npx turbo clean",
"build": "npx turbo build",
"dev": "npx turbo dev",
"lint": "npx turbo lint",
"test": "npx turbo test",
"fmt": "npx prettier --write \"**/*.{js,ts,tsx,md,json}\"",
"publish-packages": "npm run build && npx changeset version && npx changeset publish"
},
"devDependencies": {
"@changesets/cli": "latest",
"prettier": "^3.4.2",
"turbo": "latest",
"typescript": "^5.7.2"
}
}