-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "@vocably/pontis",
"version": "1.0.2",
"description": "Painless Chrome extension authentication via AWS Amplify websites",
"keywords": [
"chrome",
"extension",
"aws",
"amplify",
"auth"
],
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc && tsc --project tsconfig.commonjs.json",
"watch-esm": "tsc --watch",
"watch-commonjs": "tsc --watch --project tsconfig.commonjs.json",
"start": "run-p watch*"
},
"repository": {
"type": "git",
"url": "https://github.com/vocably/pontis.git"
},
"peerDependencies": {
"@aws-amplify/core": ">=4.5.0"
},
"dependencies": {
"@vocably/hermes": "^1.0.0"
},
"devDependencies": {
"@aws-amplify/core": "^4.5.8",
"@semantic-release/git": "^10.0.1",
"@types/chrome": "^0.0.190",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
}
}