generated from crashmax-dev/node-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.46 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.46 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
{
"name": "@stenodb/browser",
"description": "✍ Easy to use local JSON database",
"type": "module",
"version": "4.0.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"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/browser#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",
"browser",
"local",
"localStorage",
"sessionStorage",
"class-transformer",
"JSON",
"ESM"
],
"scripts": {
"dev": "pnpm build --watch src",
"build": "tsup src/index.ts --format esm,cjs --dts --clean"
},
"dependencies": {
"@stenodb/logger": "workspace:4.0.1",
"@stenodb/utils": "workspace:4.0.1"
},
"peerDependencies": {
"@stenodb/logger": "workspace:4.0.1"
},
"ava": {
"snapshotDir": "test/snapshots",
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--no-warnings"
]
},
"engines": {
"node": ">=14.16"
}
}