-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "valkeyrie",
"version": "0.2.0",
"type": "module",
"main": "dist/cjs/valkeyrie.js",
"module": "dist/esm/valkeyrie.js",
"types": "dist/esm/valkeyrie.d.ts",
"exports": {
".": {
"import": "./dist/esm/valkeyrie.js",
"require": "./dist/cjs/valkeyrie.js",
"types": "./dist/esm/valkeyrie.d.ts"
},
"./KvU64": {
"import": "./dist/esm/kv-u64.js",
"require": "./dist/cjs/kv-u64.js",
"types": "./dist/esm/kv-u64.d.ts"
},
"./package.json": "./package.json"
},
"author": "Maksim Sinik <[email protected]>",
"license": "MIT",
"keywords": [
"kv-db",
"kv",
"keyvalue"
],
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/ducktors/valkeyrie/issues"
},
"homepage": "https://github.com/ducktors/valkeyrie#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ducktors/valkeyrie.git"
},
"packageManager": "[email protected]",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json && tsc -p tsconfig.cjs.json && cp cjs-package.json dist/cjs/package.json",
"validate-exports": "validate-package-exports --check --verify --info",
"postbuild": "npm run validate-exports",
"lint": "biome check src test",
"fmt": "biome format src test",
"release": "pnpm run build && changeset publish",
"commitlint": "commitlint",
"commit": "npx git-cz --disable-emoji",
"prepare": "husky",
"check-updates": "pnpm outdated --recursive --long",
"test": "tsx --test ./test/*.ts",
"test:watch": "tsx --watch --test ./test/*.ts",
"test:coverage": "c8 --all --src src --reporter lcov --reporter text tsx --test ./test/*.ts",
"benchmark": "tsx ./benchmark/index.ts",
"benchmark:basic": "tsx ./benchmark/basic.ts",
"benchmark:list": "tsx ./benchmark/list.ts",
"benchmark:atomic": "tsx ./benchmark/atomic.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/lint": "^19.8.0",
"@commitlint/prompt": "^19.8.0",
"@ducktors/tsconfig": "^1.0.0",
"@types/node": "^22.13.9",
"c8": "^10.1.3",
"commitlint-config-cz": "^0.13.3",
"commitlint-plugin-function-rules": "^4.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mitata": "^1.0.34",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"validate-package-exports": "^0.8.0"
},
"files": [
"dist"
],
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
}
}