-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "citra",
"version": "0.29.7",
"description": "OAuth2 library for Typescript",
"repository": {
"type": "git",
"url": "https://github.com/absolutejs/citra.git"
},
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"license": "BSL-1.1",
"author": "Alex Kahn",
"scripts": {
"build": "rm -rf dist && bun build src/index.ts --outdir dist --target=bun --external elysia && tsc --emitDeclarationOnly --project tsconfig.json",
"config": "absolute config",
"test": "bun test",
"format": "absolute prettier --write",
"lint": "absolute eslint",
"typecheck": "absolute typecheck",
"release": "bun run format && bun run build && bun publish"
},
"devDependencies": {
"@absolutejs/absolute": "^0.19.0-beta.1023",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "1.3.14",
"eslint": "^9",
"eslint-plugin-absolute": "^0.11.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-security": "4.0.0",
"globals": "^17.6.0",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3"
}
}