-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "appendable",
"version": "1.0.0",
"description": "AppendableDB is an append-only\\*, schemaless, service-less, client-facing database.",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --minify --sourcemap --outfile=dist/appendable.min.js",
"warp": "rm -rf dist examples/client/appendable.min.js examples/client/appendable.min.js.map && esbuild src/index.ts --bundle --minify --sourcemap --outfile=dist/appendable.min.js",
"client": "cd examples/client && go run server.go",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevmo314/appendable.git"
},
"author": "Kevin Wang <kevmo314@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevmo314/appendable/issues"
},
"homepage": "https://github.com/kevmo314/appendable#readme",
"dependencies": {
"esbuild": "^0.19.7"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"prettier": "^3.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
}