-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.76 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
{
"name": "walrus-pass",
"version": "0.0.1",
"description": "walrus pass - Decentralized Proof of Ownership and Access",
"repository": {
"type": "git",
"url": "git+https://github.com/zktx-io/walrus-pass-monorepo.git"
},
"scripts": {
"install:did": "cd packages/walrus-did && npm i",
"install:did-resolver": "cd packages/walrus-did-resolver && npm i",
"install:holder": "cd packages/holder && npm i",
"install:verifier": "cd packages/verifier && npm i",
"install:all": "npm run install:did && npm run install:did-resolver && npm run install:holder && npm run install:verifier",
"format:did": "cd packages/walrus-did && npm run format",
"format:did-resolver": "cd packages/walrus-did-resolver && npm run format",
"format:holder": "cd packages/holder && npm run format",
"format:verifier": "cd packages/verifier && npm run format",
"format": "npm run format:did && npm run format:did-resolver && npm run format:holder && npm run format:verifier",
"build:did": "cd packages/walrus-did && npm run build",
"build:did-resolver": "cd packages/walrus-did-resolver && npm run build",
"build:holder": "cd packages/holder && npm run build",
"build:verifier": "cd packages/verifier && npm run build",
"build": "npm run build:did && npm run build:did-resolver",
"test": "echo \"Error: no test specified\" && exit 1",
"start:holder": "cd packages/holder && npm run start",
"start:verifier": "cd packages/verifier && npm run start",
"version:patch": "lerna version patch"
},
"author": "daoauth",
"license": "ISC",
"private": true,
"workspaces": [
"packages/walrus-did",
"packages/walrus-did-resolver",
"packages/holder",
"packages/verifier"
],
"devDependencies": {
"lerna": "^8.1.8"
}
}