Skip to content

Commit 6704e5c

Browse files
committed
init
0 parents  commit 6704e5c

9 files changed

+1326
-0
lines changed

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# build
4+
.next
5+
build
6+
dist
7+
8+
# debug
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
.pnpm-debug.log
13+
.husky
14+
15+
# dependencies
16+
node_modules
17+
.pnp
18+
.pnp.js
19+
20+
# env files
21+
.env
22+
.env.local
23+
.env.development.local
24+
.env.test.local
25+
.env.production.local
26+
27+
# generated
28+
packages/**/lib
29+
30+
# misc
31+
.DS_Store
32+
*.pem
33+
34+
# testing
35+
coverage
36+
37+
# turbo
38+
.turbo
39+
40+
# vercel
41+
.vercel

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
auto-install-peers = true

LICENSE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
ISC License
2+
3+
Copyright (c) 2024 Michał Korczak
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
10+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
12+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
14+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15+
PERFORMANCE OF THIS SOFTWARE.

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# USOS
2+
3+
A set of USOS tools used in my projects.
4+
5+
### Packages
6+
7+
- `next-auth-provider`: NextAuth.js USOS OAuth 1.0a provider
8+
9+
### Build
10+
11+
To build all apps and packages, run the following command:
12+
13+
```sh
14+
pnpm build
15+
```

biome.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
4+
"files": { "ignoreUnknown": false, "ignore": [] },
5+
"formatter": {
6+
"enabled": true,
7+
"formatWithErrors": false,
8+
"indentStyle": "space"
9+
},
10+
"organizeImports": { "enabled": true },
11+
"linter": { "enabled": true, "rules": { "recommended": true } },
12+
"css": {
13+
"formatter": {
14+
"quoteStyle": "single"
15+
}
16+
},
17+
"javascript": {
18+
"formatter": {
19+
"quoteStyle": "single"
20+
}
21+
}
22+
}

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "root",
3+
"private": true,
4+
"version": "0.1.0",
5+
"scripts": {
6+
"build": "pnpm run build",
7+
"format": "biome format --write packages",
8+
"lint": "biome lint packages"
9+
},
10+
"packageManager": "pnpm@9.15.0",
11+
"volta": {
12+
"node": "22.12.0",
13+
"pnpm": "9.15.0"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/Omikorin/usos.git"
18+
},
19+
"author": "Michał Korczak (https://omikor.in)",
20+
"license": "ISC",
21+
"devDependencies": {
22+
"@biomejs/biome": "^1.9.4",
23+
"tsup": "^8.3.5",
24+
"typescript": "^5.7.2"
25+
}
26+
}

0 commit comments

Comments
 (0)