-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
38 lines (38 loc) · 864 Bytes
/
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
{
"name": "arctic",
"type": "module",
"version": "2.2.1",
"description": "OAuth 2.0 clients for popular providers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "rm -rf dist/* && tsc",
"format": "prettier -w .",
"lint": "eslint src",
"test": "vitest run --sequence.concurrent"
},
"files": [
"/dist/"
],
"author": "pilcrowOnPaper",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pilcrowOnPaper/arctic"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "1.6.0"
},
"dependencies": {
"@oslojs/crypto": "1.0.1",
"@oslojs/encoding": "1.1.0",
"@oslojs/jwt": "0.2.0"
}
}