-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "attestprotocol",
"version": "2.0.0-0",
"author": "Andrew Miracle <andrew@daccred.co>",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@stellar/stellar-sdk": "^15.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^24.2.9"
},
"keywords": [
"attest",
"attestation-service",
"monorepo",
"pnpm",
"soroban",
"stellar"
],
"private": "true",
"repository": "daccred/attest.so.git",
"scripts": {
"build": "pnpm run --recursive build",
"build:docs": "pnpm --filter @attestprotocol/docs build",
"changeset": "changeset",
"commit": "cz",
"dev": "pnpm run --recursive dev",
"dev:docs": "pnpm --filter @attestprotocol/docs dev",
"filter": "pnpm --filter",
"format": "pnpm run -r format",
"lint": "pnpm run -r lint",
"release": "pnpm release:version && npx release-it@17.11.0",
"release:stellar": "cd contracts/stellar && cargo release $1 --execute",
"release:version": "pnpm changeset && pnpm changeset version",
"semantic-release": "semantic-release",
"syncpack": "npx syncpack",
"syncpack:format": "npx syncpack format && npx syncpack list",
"test": "pnpm run -r test"
},
"workspaces": [
"packages/*",
"contracts/*"
],
"pnpm": {
"overrides": {
"axios@<1.16.0": ">=1.16.0",
"basic-ftp@<=5.3.0": ">=5.3.1",
"body-parser@<1.20.3": ">=1.20.3",
"brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6",
"cookie@<0.7.0": ">=0.7.0",
"diff@>=6.0.0 <8.0.3": ">=8.0.3",
"express@<4.21.2": ">=4.21.2",
"fast-uri@<3.1.2": ">=3.1.2",
"follow-redirects@<1.16.0": ">=1.16.0",
"ip-address@<10.1.1": ">=10.1.1",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"lodash@<=4.17.23": ">=4.18.0",
"lodash-es@<=4.17.23": ">=4.18.0",
"minimatch@<3.1.4": ">=3.1.4",
"path-to-regexp@<0.1.13": ">=0.1.13",
"postcss@<8.5.10": ">=8.5.10",
"qs@>=6.11.1 <6.15.2": ">=6.15.2",
"send@<0.19.0": ">=0.19.0",
"serialize-javascript@<7.0.5": ">=7.0.5",
"serve-static@<1.16.0": ">=1.16.0",
"tar@<=7.5.10": ">=7.5.11",
"uuid@<11.1.1": ">=11.1.1",
"ws@>=8.0.0 <8.20.1": ">=8.20.1",
"zod@<=3.22.2": ">=3.22.3"
}
}
}