-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 923 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
40
41
42
43
44
{
"name": "@michealpearce/typeorm-models",
"version": "0.0.5",
"packageManager": "[email protected]",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bash ./scripts/build.sh",
"publish": "yarn build && yarn npm publish --access public"
},
"dependencies": {
"@michealpearce/utils": "^0.0.9"
},
"devDependencies": {
"@types/node": "^18.15.3",
"typeorm": "^0.3.12",
"typescript": "^4.9.5",
"vite": "^4.2.0"
},
"peerDependencies": {
"typeorm": "^0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/MichealPearce/typeorm-models.git"
},
"bugs": {
"url": "https://github.com/MichealPearce/typeorm-models/issues"
}
}