-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@stenodb/node",
"description": "✍ Easy to use local JSON database",
"version": "4.0.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist",
"src"
],
"author": {
"name": "Vitalij Ryndin",
"email": "sys@crashmax.ru",
"url": "https://crashmax.ru"
},
"license": "MIT",
"homepage": "https://github.com/crashmax-dev/stenodb/packages/node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/stenodb.git"
},
"bugs": {
"url": "https://github.com/crashmax-dev/stenodb/issues"
},
"keywords": [
"db",
"database",
"local",
"class-transformer",
"JSON"
],
"scripts": {
"dev": "pnpm build --watch src",
"build": "tsup src/index.ts --format esm,cjs --dts --clean --target node14",
"test": "ava",
"test:watch": "ava --watch"
},
"dependencies": {
"@stenodb/logger": "workspace:4.0.1",
"@stenodb/utils": "workspace:4.0.1",
"@stenodb/writer": "workspace:4.0.1"
},
"devDependencies": {
"@types/node": "18.11.19",
"class-transformer": "0.5.1",
"reflect-metadata": "0.1.13"
},
"peerDependencies": {
"@stenodb/logger": "workspace:4.0.1"
},
"ava": {
"snapshotDir": "test/snapshots",
"extensions": [
"ts"
],
"nodeArguments": [
"--loader=tsx",
"--no-warnings"
]
},
"engines": {
"node": ">=14.16"
}
}