-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 884 Bytes
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
{
"name": "azuriom-auth",
"version": "1.1.1",
"description": "A JavaScript implementation of the Azuriom Auth API.",
"keywords": [
"azuriom"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Azuriom/AzAuthJS.git"
},
"files": [
"build"
],
"sideEffects": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts",
"require": "./build/index.js"
}
},
"scripts": {
"build": "tsc",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"itty-fetcher": "^1.0.10"
},
"devDependencies": {
"oxfmt": "^0.52.0",
"oxlint": "^1.63.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18"
}
}