-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.11 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
{
"name": "@plusauth/web",
"version": "0.4.2",
"description": "PlusAuth Web Util",
"main": "dist/plusauth-web.js",
"types": "dist/plusauth-web.d.ts",
"module": "dist/plusauth-web.es.js",
"repository": "https://github.com/PlusAuth/plusauth-web",
"homepage": "https://github.com/PlusAuth/plusauth-web#readme",
"packageManager": "pnpm@8.7.4",
"author": {
"name": "Ismail H. Ayaz",
"email": "ismail.ayaz@ekinokssoftware.com"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"docs": "typedoc",
"build": "vite build && api-extractor run",
"lint": "eslint . --ext .ts --fix",
"test": "mocha",
"release": "cross-env GITHUB_TOKEN=$GITHUB_TOKEN release-it"
},
"dependencies": {
"@simplewebauthn/browser": "^8.0.2",
"whatwg-fetch": "^3.6.18"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@microsoft/api-extractor": "^7.36.4",
"@release-it/conventional-changelog": "^7.0.1",
"@simplewebauthn/typescript-types": "^8.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.8",
"core-js": "^3.32.2",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always",
100
],
"scope-case": [
0
]
}
},
"lint-staged": {
"*.ts": "npm run lint"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}