-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@dsrv/kms-monorepo",
"description": "blockchain key managament system",
"repository": "https://github.com/dsrvlabs/kms-monorepo",
"author": "daoauth",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"dsrv",
"blockchain",
"ledger",
"signer",
"kms",
"key management system",
"keystore",
"store",
"mnemonic",
"bip39",
"bip32",
"bip44"
],
"contributors": [
{
"name": "sunny0529",
"url": "https://github.com/sunny0529"
},
{
"name": "kwklly",
"url": "https://github.com/kwklly"
},
{
"name": "Nahee-Park",
"url": "https://github.com/Nahee-Park"
}
],
"scripts": {
"build:kms": "rm -rf lib && rm -f ./packages/kms/tsconfig.tsbuildinfo && yarn build:kms-cjs && yarn build:kms-esm",
"build:kms-cjs": "cd packages/kms && tsc --module commonjs --outDir lib/cjs --strict true",
"build:kms-esm": "cd packages/kms && tsc --module es6 --outDir lib/esm",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{ts,tsx}\"",
"start:example": "cd packages/examples && ts-node",
"start:kms": "cd packages/kms && ts-node",
"test:kms": "cd packages/kms && jest",
"test:examples": "cd packages/examples && jest",
"lint": "eslint './packages/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './packages/**/*.{ts,tsx}'",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint",
"git add"
]
}
}