-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 Bytes
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": "@dweb-cloud/dev",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"keywords": [
"dweb-cloud"
],
"author": "",
"license": "Apache-2.0",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"oxlint": "^1.9.0",
"prettier": "^3.6.2",
"vitest": "^1.6.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,yaml,yml}": [
"prettier --write"
],
"packages/*/src/**/*.{ts,tsx}": [
"oxlint --fix"
]
}
}