-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.26 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
86
87
{
"name": "@withstudiocms/auth-kit",
"version": "0.1.4",
"description": "Utilities for managing authentication",
"author": {
"name": "withstudiocms",
"url": "https://studiocms.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withstudiocms/studiocms.git",
"directory": "packages/@withstudiocms/auth-kit"
},
"contributors": [
"Adammatthiesen",
"jdtjenkins",
"dreyfus92",
"code.spirit"
],
"license": "MIT",
"keywords": [
"astro-studiocms",
"cms",
"studiocms"
],
"homepage": "https://studiocms.dev",
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"update:username-list": "node ./scripts/update-usernames.js",
"update:password-list": "node ./scripts/update-passwords.js",
"update:lists": "pnpm update:username-list && pnpm update:password-list",
"prebuild": "pnpm update:lists",
"predev": "pnpm update:lists",
"build": "tsdown --config tsdown.config.ts --clean",
"dev": "tsdown --config tsdown.config.ts --no-clean",
"test": "vitest",
"effect-check": "pnpm effect-language-service diagnostics --project tsconfig.tspc.json",
"ci:effect-check": "pnpm effect-check --format github-actions",
"typecheck": "tspc -p tsconfig.tspc.json"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./utils/*": {
"types": "./dist/utils/*.d.ts",
"default": "./dist/utils/*.js"
}
},
"type": "module",
"dependencies": {
"@withstudiocms/effect": "workspace:^",
"@oslojs/binary": "^1.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0"
},
"devDependencies": {
"@types/node": "catalog:",
"astro": "catalog:astrojs-current"
},
"peerDependencies": {
"@effect/platform": "catalog:effect",
"astro": "catalog:astrojs-min",
"effect": "catalog:effect",
"effectify": "workspace:^"
}
}