-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "@authsignal/node",
"version": "2.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"authsignal",
"mfa",
"2fa",
"authentication"
],
"license": "MIT",
"repository": "git://github.com/authsignal/authsignal-node.git",
"sideEffects": false,
"scripts": {
"lint": "eslint",
"build": "rollup -c rollup.config.js",
"test": "vitest"
},
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"dotenv": "^16.4.5",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"rollup": "^2.73.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"uuid": "^11.0.3",
"vitest": "^2.1.5"
},
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
}