-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "cipher-auth",
"private": true,
"version": "1.0.1",
"description": "Modern authentication infrastructure for Javascript/TypeScript based applications. Secure by default, customizable by design, with the DX you actually want.",
"keywords": [
"authentication",
"auth",
"passport",
"oauth",
"typescript",
"react",
"express"
],
"homepage": "https://github.com/cipher-d-dev/cipher_auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cipher-d-dev/cipher_auth.git"
},
"bugs": {
"url": "https://github.com/cipher-d-dev/cipher_auth/issues"
},
"license": "MIT",
"author": "cipher-d-dev",
"packageManager": "pnpm@10.29.3",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.3",
"eslint": "10.0.0",
"prettier": "^3.8.1",
"turbo": "^2.8.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}