-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.09 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
66
67
68
69
{
"name": "bun-sqlite-key-value",
"version": "1.13.0-beta.1",
"author": {
"name": "Gerold Penz",
"email": "gerold@gp-softwaretechnik.at",
"url": "https://gp-softwaretechnik.at/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerold-penz/bun-sqlite-key-value.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@types/bun": "latest",
"typedoc": "^0.26.7"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"bugs": {
"url": "https://github.com/gerold-penz/bun-sqlite-key-value/issues"
},
"description": "A super fast key-value store with SQLite that uses bun:sqlite and v8 as faster JSON replacement.",
"homepage": "https://gerold-penz.github.io/bun-sqlite-key-value/",
"keywords": [
"Bun",
"Bun.js",
"Cache",
"Data-Storage",
"Database",
"Db",
"KV",
"KVS",
"Key-Value",
"Key-Value-Storage",
"Key-Value-Store",
"NoSql",
"NoSql-Database",
"SQLite",
"Storage",
"Store",
"TTL",
"Time To Live",
"TypeScript",
"bun:sqlite",
"synchronous"
],
"license": "MIT",
"scripts": {
"test": "bun test",
"bun:build": "bun build ./src/index.ts --outdir=./dist --target=node",
"tsc:dts": "bunx tsc --project ./tsconfigDts.json --declaration",
"build": "bun run typedoc && bun run bun:build && bun run tsc:dts",
"incr_version": "npm version patch --no-git-tag-version",
"incr_version:beta": "npm version prerelease --no-git-tag-version --preid beta",
"npm:publish": "bun run test && bun run incr_version && bun run build && export npm_config_registry=https://registry.npmjs.org/ npm publish --access public",
"npm:publish:beta": "bun run test && bun run incr_version:beta && bun run build && export npm_config_registry=https://registry.npmjs.org/ npm publish --access public --tag beta",
"jsr:publish": "bun run ./update_jsr_version.ts && bunx jsr publish",
"typedoc": "bunx typedoc",
"typedoc:watch": "bunx typedoc --watch --preserveWatchOutput"
},
"type": "module",
"files": [
"dist",
"src"
]
}