generated from stacksjs/stacks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "@stacksjs/auth",
"type": "module",
"version": "0.41.1",
"packageManager": "[email protected]",
"description": "A more simplistic way to authenticate.",
"author": "Chris Breuer",
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/stacks/tree/main/.stacks/core/auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stacks.git",
"directory": "./.stacks/core/auth"
},
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": [
"auth",
"authenticate",
"stacks"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"contributors": [
"Chris Breuer <[email protected]>"
],
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18.20.7",
"pnpm": ">=7.33.7"
},
"scripts": {
"build": "mkdist -d",
"dev": "mkdist -d",
"prepublishOnly": "pnpm run build",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vitest": "^0.34.6"
},
"devDependencies": {
"mkdist": "^1.6.0",
"typescript": "^4.9.5"
}
}