-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 1.77 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
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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@sunbird-rc/registry-cli",
"version": "2.0.0",
"description": "A CLI to setup and manage Sunbird RC registry instances",
"author": "Vedant K <https://github.com/gamemaker1>",
"keywords": [
"registry-cli",
"sbrc",
"sb-rc",
"sunbird-rc",
"verifiable-credentials",
"registry"
],
"contributors": [
{
"name": "Prasanna S R",
"url": "https://github.com/srprasanna",
"email": "[email protected]"
},
{
"name": "Sreejith K",
"url": "https://github.com/Sreejit-K",
"email": "[email protected]"
}
],
"license": "MIT",
"types": "out/types/types.d.ts",
"bin": {
"registry": "bin/registry"
},
"files": [
"bin",
"out",
"readme.md",
"license.md",
"package.json",
"tsconfig.json"
],
"engines": {
"node": ">= 16",
"pnpm": ">= 6"
},
"scripts": {
"clean": "del out",
"copy-templates": "cp -r src/templates out/src",
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"build": "pnpm compile && pnpm copy-templates",
"lint": "prettier -w . --ignore-path .gitignore",
"test": "prettier -c . --ignore-path .gitignore",
"prepare": "pnpm build"
},
"dependencies": {
"@types/node": "16.11.21",
"@types/update-notifier": "5.1.0",
"apisauce": "2.1.5",
"extract-zip": "2.0.1",
"gluegun": "4.7.1",
"keypair": "^1.0.4",
"update-notifier": "5.1.0",
"yaml": "1.10.2"
},
"devDependencies": {
"del-cli": "^4.0.1",
"np": "7.6.0",
"npm": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"ts-node": "^10.4.0",
"typescript": "4.5.5"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"proseWrap": "always"
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"yargs-parser@>=16.0.0 <18.1.2": ">=18.1.2",
"follow-redirects@<1.14.7": ">=1.14.7"
}
}
}