-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@the-brains/github-db",
"version": "1.0.21",
"repository": {
"type": "git",
"url": "https://github.com/the-brains/GithubDB.git"
},
"license": "MIT",
"author": {
"name": "Leo",
"email": "Leo.benkel@gmail.com"
},
"contributors": [
{
"name": "Leo",
"email": "Leo.benkel@gmail.com"
},
{
"name": "Jack Le Hamster",
"email": "jacklehamster@gmail.com",
"url": "https://dobuki.net"
}
],
"description": "This is the repo where the DB library lives to use the database-storage repo.",
"homepage": "https://the-brains.github.io/GithubDB/",
"engines": {
"node": ">=14.0.0"
},
"module": "src/index.ts",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"server": "npx local-web-server --directory .",
"build": "bun i && bun run bundler/bundler.ts && bun run build:declaration && npx webpack",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"build:example": "cd examples && bun i && bun run build && cd ..",
"auto-publish": "npm explore @dobuki/auto-publish -- bun run auto-publish \"$(pwd)\"",
"test": "bun test"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@dobuki/auto-publish": "^1.0.20",
"@types/bun": "^1.1.13",
"@types/deep-equal": "^1.0.4",
"@types/jquery": "^3.5.30",
"@types/node": "^22.9.0",
"@types/requirejs": "^2.1.37",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.3",
"bun-types": "^1.1.34",
"np": "^10.0.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"deep-equal": "^2.2.3",
"mimetypes": "^0.1.1"
}
}