-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
41
42
{
"name": "microsql",
"version": "0.0.5",
"description": "A tiny file-based database for TypeScript and JavaScript projects.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/moshetanzer/microsql.git"
},
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"lint": "eslint src --ext .ts",
"release": "bumpp && npm publish"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.0",
"bumpp": "^10.3.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"tsdown": "^0.16.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.7"
},
"packageManager": "pnpm@10.19.0"
}