-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.05 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.05 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
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
83
84
85
{
"name": "@solvro/auth",
"version": "1.2.7",
"description": "AdonisJS Ally provider for Solvro Auth",
"keywords": [
"social-auth",
"adonisjs-ally",
"adonisjs",
"solvro-auth"
],
"homepage": "https://github.com/Solvro/web-solvro-auth#readme",
"bugs": {
"url": "https://github.com/Solvro/web-solvro-auth/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Solvro/web-solvro-auth.git"
},
"license": "MIT",
"author": "Bartosz Gotowski",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/index.js",
"build/index.d.ts",
"build/configure.js",
"build/configure.d.ts",
"build/src",
"build/stubs",
"src"
],
"scripts": {
"build": "npm run build-only && npm run copyfiles",
"build-only": "tsc",
"copyfiles": "copyfiles \"stubs/**/**/*.stub\" build",
"dev": "tsc --watch",
"format": "prettier --write .",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"typecheck": "tsc --noEmit"
},
"prettier": "@solvro/config/prettier",
"devDependencies": {
"@adonisjs/ally": "^5.0.2",
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.17.2",
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/tsconfig": "^1.4.0",
"@semantic-release/git": "^10.0.1",
"@solvro/config": "^1.13.3",
"@swc/core": "^1.10.16",
"@vinejs/vine": "^3.0.0",
"copyfiles": "^2.4.1",
"eslint": "^9.20.1",
"prettier": "^3.5.1",
"semantic-release": "^24.2.2",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@adonisjs/ally": "^5",
"@adonisjs/core": "^6",
"@vinejs/vine": "*"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20"
},
"volta": {
"node": "22.14.0"
},
"publishConfig": {
"access": "public"
}
}