generated from rhinestonewtf/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.83 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
{
"name": "@semaphore-msa-modules/root",
"description": "Semaphore modular smart account modules",
"license": "GPL-3.0",
"private": true,
"author": {
"name": "Jimmy Chu",
"url": "https://jimmychu0807.hk"
},
"homepage": "https://github.com/jimmychu0807/semaphore-msa-modules",
"repository": {
"type": "git",
"url": "git+https://github.com/jimmychu0807/semaphore-msa-modules.git"
},
"bugs": {
"url": "https://github.com/jimmychu0807/semaphore-msa-modules/issues"
},
"keywords": [
"account abstraction",
"smart account modules",
"semaphore"
],
"devDependencies": {
"rimraf": "catalog:"
},
"scripts": {
"dev": "pnpm run containers:up && pnpm -r --stream --filter './packages/*' run dev",
"containers:up": "docker compose up -d",
"containers:down": "docker compose down",
"containers:restart": "pnpm containers:down && pnpm containers:up",
"contracts:build": "pnpm --filter semaphore-msa-modules-contracts build",
"contracts:lint": "pnpm --filter semaphore-msa-modules-contracts lint",
"contracts:test": "pnpm --filter semaphore-msa-modules-contracts test",
"web:build": "pnpm --filter semaphore-msa-modules-web build",
"build": "pnpm -r --filter './packages/*' build",
"clean": "pnpm -r --filter './packages/*' clean",
"lint": "pnpm -r --filter './packages/*' lint",
"lint:write": "pnpm -r --filter './packages/*' lint:write",
"deploy:vercel": "vercel build --prod && vercel deploy --prebuilt --prod",
"test": "pnpm -r --filter './packages/contracts' test",
"ci-check": "pnpm run lint & pnpm run build && pnpm run test"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}