-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.98 KB
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
{
"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 -f docker-containers/docker-compose.yaml --env-file .env up -d",
"containers:down": "docker compose -f docker-containers/docker-compose.yaml --env-file .env 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 build && pnpm run test && pnpm run lint"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}