-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nest-arango",
"version": "0.3.0",
"description": "ArangoDB driver module for NestJS with a built-in CLI tool for creating and running migration scripts",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"scripts": {
"clean": "shx rm -rf ./lib && shx rm -rf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:cli",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && shx mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"build:cli": "tsc -p ./configs/tsconfig.cli.json",
"prepack": "npm run build"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"keywords": [
"nestjs",
"arangodb",
"arangojs",
"repository",
"migrations",
"cli",
"documents"
],
"author": "The Nest-Arango Team",
"repository": {
"type": "git",
"url": "https://github.com/AbyssAlora/nest-arango.git"
},
"bugs": {
"url": "https://github.com/AbyssAlora/nest-arango/issues"
},
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.5",
"arangojs": "^8.7.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"arangojs": "^8.1.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"ts-node": "^10.9.1"
},
"bin": {
"nest-arango": "./bin/cli.js"
}
}