-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "@nerdo/memorydb",
"description": "nerdo's in-memory database, written in TypeScript",
"sideEffects": false,
"version": "0.0.4",
"author": "Dannel Albert <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"source": "src/index.ts",
"main": "dist/memorydb.js",
"umd:main": "dist/memorydb.umd.js",
"module": "dist/memorydb.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/memorydb.js",
"default": "./dist/memorydb.modern.mjs"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --globals @nerdo/utils=nerdoUtils",
"dev": "microbundle watch",
"test": "vitest run",
"tdd": "vitest dev"
},
"devDependencies": {
"@nerdo/prettier-config": "^1.0.1",
"@types/node": "^18.11.2",
"@types/uuid": "^8.3.4",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"typescript": "4.8.4",
"vitest": "^0.23.4",
"zod": "^3.19.1"
},
"peerDependencies": {
"zod": "^3.19.1"
},
"dependencies": {
"@nerdo/utils": "^2.1.0",
"uuid": "^9.0.0"
},
"prettier": "@nerdo/prettier-config",
"publishConfig": {
"access": "public"
}
}