-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "vay.js",
"version": "3.0.0",
"author": "Sebastian <sebastian@iamsebastian.dev>",
"repository": "https://github.com/IamSebastianDev/vay.js.git",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.2.2",
"alex": "^11.0.1",
"lefthook": "^1.11.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^2.0.6",
"typescript": "^5.4.2"
},
"license": "MIT",
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
},
"packageManager": "bun@1.2.0",
"private": true,
"scripts": {
"preci": "rm -rf node_modules",
"ci": "bun install --frozen-lockfile",
"build": "turbo build",
"dev": "turbo dev",
"docs:dev": "bun --filter @repo/docs docs:dev",
"docs:build": "bun --filter @repo/docs docs:build",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"serve": "bun --filter @vayjs/vay serve --open",
"format": "prettier --write .",
"lint": "alex ."
},
"workspaces": [
"packages/**/*",
"docs"
]
}