-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 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
55
56
57
58
59
{
"name": "@bedrockio/model",
"version": "0.23.0",
"description": "Bedrock utilities for model creation.",
"type": "module",
"scripts": {
"test": "jest",
"types": "scripts/types",
"lint": "eslint",
"build": "scripts/build",
"eject": "scripts/eject.js",
"prepublish": "yarn build && yarn types"
},
"main": "dist/cjs/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"contributors": [
{
"name": "Andrew Plummer",
"email": "andrew@rekall.ai"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bedrockio/model"
},
"dependencies": {
"@bedrockio/logger": "^1.1.5",
"jsonc-parser": "^3.3.1",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@bedrockio/yada": "1.x",
"mongoose": "9.x"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@bedrockio/eslint-plugin": "^1.3.1",
"@bedrockio/prettier-config": "^1.1.1",
"@bedrockio/yada": "^1.11.2",
"@shelf/jest-mongodb": "^6.0.2",
"@swc/core": "^1.15.11",
"eslint": "^10.0.0",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"mongodb": "^7.1.0",
"mongoose": "^9.2.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"prettier": "@bedrockio/prettier-config",
"volta": {
"node": "22.14.0",
"yarn": "1.22.22"
}
}