-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "simple-github-authentication",
"version": "1.0.2",
"module": "src/index.ts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun i && bun run bundler/bundler.ts && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"build:demo": "bun link && cd example && bun i && bun run build && cd ..",
"auto-publish": "npm explore @dobuki/auto-publish -- bun run auto-publish \"$(pwd)\"",
"test": "bun test"
},
"devDependencies": {
"@dobuki/dev-dependencies": "^1.0.1",
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"express": "^4.19.2",
"jest": "^29.7.0",
"supertest": "^7.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/The-Brains/SimpleGithubAuthentication.git"
},
"author": {
"name": "Jack Le Hamster",
"email": "jacklehamster@gmail.com"
},
"description": "Github authentication flow made easy",
"homepage": "https://the-brains.github.io/SimpleGithubAuthentication/"
}