-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 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
{
"name": "@jpyc/sdk-examples",
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "Code examples for JPYC Node SDKs",
"repository": "https://github.com/jcam1/sdk-examples.git",
"homepage": "https://github.com/jcam1/sdk-examples.git#readme",
"engines": {
"node": "^20.12.0",
"yarn": "^1.22.22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky",
"format": "prettier --write",
"format:dry-run": "prettier --check"
},
"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"
],
"packages/v1/**/*.{ts,js}": [
"yarn workspace @jpyc/sdk-v1-examples run lint",
"yarn workspace @jpyc/sdk-v1-examples run format"
],
"packages/v1/**/*.{md,json,yml}": [
"yarn workspace @jpyc/sdk-v1-examples run format"
]
}
}