generated from sergiodxa/remix-auth-strategy-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.05 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
{
"name": "remix-auth-spotify",
"repository": {
"url": "https://github.com/JosteinKringlen/remix-auth-spotify"
},
"author": "Jostein Kringlen",
"version": "1.3.2",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsup",
"typecheck": "tsc",
"typecheck:attw": "attw --pack .",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"lint:publint": "publint",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:snap": "npm run test -- --update",
"test:coverage": "npm run test -- --coverage",
"release": "npm run build && changeset publish"
},
"keywords": ["remix", "remix-auth", "auth", "authentication", "strategy"],
"license": "MIT",
"exports": {
".": {
"types": {
"import": "./build/index.d.mts",
"require": "./build/index.d.ts",
"default": "./build/index.d.mts"
},
"import": "./build/index.mjs",
"require": "./build/index.js",
"default": "./build/index.mjs"
}
},
"files": ["build", "package.json", "README.md"],
"peerDependencies": {
"@remix-run/server-runtime": ">=1.1.0",
"remix-auth": ">=3.2.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.1",
"@babel/core": "7.23.6",
"@babel/preset-env": "7.23.6",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.10",
"@remix-run/node": "2.15.1",
"@remix-run/react": "2.15.1",
"@remix-run/server-runtime": "2.15.1",
"@total-typescript/tsconfig": "1.0.4",
"c8": "8.0.1",
"cz-conventional-changelog": "3.3.0",
"publint": "0.2.12",
"react": "18.3.1",
"remix-auth": "3.7.0",
"ts-node": "10.9.2",
"tsup": "8.3.5",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"dependencies": {
"remix-auth-oauth2": "^1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=20.0.0"
}
}