-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "@hellocoop/quickstart",
"version": "2.8.9",
"description": "A CLI and module to start the Hello Quickstart web app and return a client_id",
"main": "index.js",
"bin": {
"quickstart": "quickstart.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist node_modules",
"build": "echo \"No build specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/packages.git"
},
"keywords": [
"hello",
"oauth",
"oauth2",
"OIDC",
"auth",
"sso",
"quickstart"
],
"author": {
"name": "Hello Identity Co-op",
"email": "[email protected]",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/packages/issues"
},
"homepage": "https://www.hello.dev/docs/sdk/quickstart",
"dependencies": {
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"get-port": "^7.0.0",
"open": "^9.1.0",
"semver": "^7.6.3"
},
"type": "module",
"engines": {
"node": ">=18.3"
}
}