-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.72 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
{
"name": "@corbado/web-core",
"version": "3.2.3-alpha.0",
"description": "This package contains core functionalities which are exported by all the SDKs and UI packages of our JavaScript library",
"author": "Abdullah Shahbaz <abdullah_ghani@live.com>",
"homepage": "https://github.com/corbado/javascript#readme",
"license": "ISC",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/corbado/javascript.git"
},
"scripts": {
"clean": "rimraf ./dist",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"generate:api": "npx @openapitools/openapi-generator-cli generate -i ./openapi/spec.yaml -g typescript-axios -o ./src/api/v1 --additional-properties=supportsES6=true",
"generate:api:v2": "npx @openapitools/openapi-generator-cli generate -i ./openapi/spec_v2.yaml -g typescript-axios -o ./src/api/v2 --additional-properties=supportsES6=true",
"build": "webpack --config webpack.prod.js",
"build:dev": "npm run clean && tsc -b"
},
"bugs": {
"url": "https://github.com/corbado/javascript/issues"
},
"dependencies": {
"@corbado/webauthn-json": "^2.2.0",
"@fingerprintjs/fingerprintjs": "^3.4.2",
"axios": "^1.8.4",
"detectincognitojs": "^1.3.7",
"loglevel": "^1.8.1",
"rxjs": "^7.8.1",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@corbado/types": "^3.0.2",
"@types/web-bluetooth": "^0.0.20",
"user-agent-data-types": "^0.4.2"
},
"gitHead": "c4c3ea12679f60f395ce56f05f2c028ca36fb4ee"
}