-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 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
43
44
45
46
47
48
49
{
"name": "yolodb",
"version": "1.2.0",
"homepage": "https://itsjavi.com/yolodb",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjavi/yolodb.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown src/index.ts --dts --sourcemap --format esm --clean",
"format": "sort-package-json && prettier --write ./src README.md tsconfig.json",
"lint": "pnpm run typecheck && prettier --check ./src README.md tsconfig.json && publint",
"prepare": "sort-package-json",
"prepublishOnly": "pnpm run lint && pnpm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"superjson": "^2.2.6"
},
"devDependencies": {
"@types/node": "^25.0.3",
"prettier": "^3.7.4",
"publint": "^0.3.16",
"sort-package-json": "^3.6.0",
"tsdown": "0.19.0-beta.2",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}