forked from storacha/content-claims
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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": "content-claims",
"version": "0.0.0",
"description": "Implementation of the Content Claims Protocol.",
"private": true,
"type": "module",
"license": "Apache-2.0 OR MIT",
"scripts": {
"start": "sst dev",
"test": "npm run test --workspaces",
"pretest": "npm run lint",
"lint": "standard && npm run lint --workspaces",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"tsc": "tsc"
},
"dependencies": {
"dotenv": "^16.0.3",
"git-rev-sync": "^3.0.2"
},
"devDependencies": {
"@types/git-rev-sync": "^2.0.0",
"aws-cdk-lib": "2.79.1",
"constructs": "10.1.156",
"sst": "^2.8.28",
"standard": "^17.0.0",
"typescript": "^5.1.6"
},
"workspaces": [
"packages/*"
],
"standard": {
"ignore": [
"*.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/content-claims.git"
},
"bugs": {
"url": "https://github.com/web3-storage/content-claims/issues"
},
"homepage": "https://github.com/web3-storage/content-claims"
}