-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
43
44
45
{
"name": "@jpyc/sdks",
"version": "1.8.0",
"private": true,
"license": "MIT",
"description": "SDKs to build applications on top of JPYC protocol",
"repository": "https://github.com/jcam1/sdks.git",
"homepage": "https://github.com/jcam1/sdks.git#readme",
"engines": {
"node": "^20.12.0",
"yarn": "^1.22.22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky",
"format": "prettier --write",
"format:dry-run": "prettier --check",
"docs": "yarn workspace @jpyc/sdk-core run docs"
},
"devDependencies": {
"husky": "9.0.11",
"lint-staged": "15.2.9",
"prettier": "3.3.3"
},
"lint-staged": {
"*.{md,json,yml}": [
"yarn run format README.md"
],
".github/**/*.{md,json,yml}": [
"yarn run format .github"
],
".docs/**/*.{md,json,yml}": [
"yarn run format docs"
],
"packages/core/**/*.{ts,js}": [
"yarn workspace @jpyc/sdk-core run lint",
"yarn workspace @jpyc/sdk-core run format"
],
"packages/core/**/*.{md,json,yml}": [
"yarn workspace @jpyc/sdk-core run format"
]
}
}