-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "@esmkit/mongotools",
"version": "0.1.0",
"description": "a mongotools wrapper for nodejs.",
"author": "Billgo <hi@billgo.me>",
"bugs": "https://github.com/esmkit/mongotools/issues",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"README.md"
],
"exports": {
".": {
"bun": "./dist/index.js",
"node": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"scripts": {
"prepublishOnly": "bun run build",
"test": "bun run test:functionality && bun run test:types",
"test:functionality": "bun test",
"test:types": "tsc --project tsconfig.test.json",
"build": "bunx rimraf dist && bun run build:esm && bun run build:bun",
"build:bun": "bun run bun.build.mjs",
"build:esm": "bunx tsup",
"example": "bun run --watch examples/index.ts"
},
"dependencies": {
"dropbox-v2-api": "^2.5.10"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@devjskit/copy-files": "^1.0.0",
"@devjskit/kill-port": "^1.0.0",
"@devjskit/rimraf": "^1.0.0",
"@types/bun": "^1.0.5",
"@types/node": "^20.10.6",
"@types/web": "^0.0.132",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}