-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "typeorm-populate",
"version": "0.3.0",
"scripts": {
"test": "bun test",
"lint": "npx @biomejs/biome lint --write",
"build": "rimraf dist && tsc",
"format": "npx @biomejs/biome format --write"
},
"type": "module",
"bin": {
"typeorm-populate": "scripts/index.mjs"
},
"author": {
"name": "sebastiansala",
"url": "https://github.com/sebas-sala"
},
"repository": {
"type": "git",
"url": "https://github.com/sebas-sala/typeorm-populate"
},
"bugs": "https://github.com/sebas-sala/typeorm-populate/issues",
"homepage": "https://typeorm-populate-documentation.vercel.app/",
"license": "MIT",
"description": "A simple TypeORM seeder to populate your database.",
"dependencies": {
"inquirer": "^12.0.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@faker-js/faker": "^9.0.3",
"@types/bun": "latest",
"sqlite3": "^5.1.7",
"tsx": "^4.19.1"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE",
"scripts/"
],
"peerDependencies": {
"typescript": "^5.0.0"
}
}