-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "unchain-membership",
"description": "Verifiable credentials for UNCHAIN community members",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unchain-dev/verifiable-membership.git"
},
"bugs": {
"url": "https://github.com/unchain-dev/verifiable-membership/issues"
},
"author": "SHØ <[email protected]> (https://github.com/neila)",
"contributors": [
"mashharuki <[email protected]> (https://github.com/mashharuki)",
"nc163 <[email protected]> (https://github.com/nc163)",
"SHØ <[email protected]> (https://github.com/neila)"
],
"devDependencies": {
"ajv": "^8.12.0",
"lint-staged": "^13.1.0",
"rome": "^11.0.0",
"simple-git-hooks": "^2.8.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"lint": "yarn run rome check .",
"lint:fix": "yarn run rome check . --apply",
"format": "yarn run rome format .",
"format:fix": "yarn run rome format . --write",
"client": "yarn workspace client",
"client:dev": "yarn workspace client dev",
"issuer": "yarn workspace issuer",
"vc": "yarn workspace vc",
"test": "yarn workspace client test && yarn workspace issuer test",
"convert": "yarn workspace vc convert",
"create:bucket": "yarn workspace vc create:bucket",
"generate:unsignedvc": "yarn workspace vc generate:unsignedvc",
"generate:profile": "yarn workspace vc generate:profile",
"generate:did": "yarn workspace vc generate:did",
"issue:vc": "yarn workspace vc issue:vc"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/node": "^18.11.18"
}
}