forked from unjs/mongoz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 971 Bytes
/
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
{
"name": "mongoz",
"version": "0.0.2",
"repository": "unjs/mongoz",
"license": "MIT",
"main": "./dist/index.js",
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": "./bin/mongoz",
"files": [
"dist",
"bin"
],
"scripts": {
"lint": "eslint --ext .ts,.js",
"prepack": "unbuild",
"dev": "jiti ./src/cli.ts",
"start": "npx concurrently 'yarn dev' 'node server.mjs'",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint"
},
"dependencies": {
"download": "^8.0.0",
"ora": "^5.4.1",
"decompress": "^4.2.1",
"consola": "^2.15.3",
"fs-extra": "^10.0.0",
"node-graceful-shutdown": "^1.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"eslint": "^7.30.0",
"execa": "^5.1.1",
"jiti": "^1.10.1",
"standard-version": "^9.3.0",
"typescript": "^4.3.5",
"unbuild": "^0.3.1"
}
}