|
| 1 | +{ |
| 2 | + "name": "@mongodb-js/compass-assistant", |
| 3 | + "description": "Compass plugin for the AI Assistant", |
| 4 | + "author": { |
| 5 | + "name": "MongoDB Inc", |
| 6 | + |
| 7 | + }, |
| 8 | + "private": true, |
| 9 | + "bugs": { |
| 10 | + "url": "https://jira.mongodb.org/projects/COMPASS/issues", |
| 11 | + |
| 12 | + }, |
| 13 | + "homepage": "https://github.com/mongodb-js/compass", |
| 14 | + "version": "1.0.0", |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "https://github.com/mongodb-js/compass.git" |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "dist" |
| 21 | + ], |
| 22 | + "license": "SSPL", |
| 23 | + "main": "dist/index.js", |
| 24 | + "compass:main": "src/index.ts", |
| 25 | + "exports": { |
| 26 | + "import": "./dist/.esm-wrapper.mjs", |
| 27 | + "require": "./dist/index.js" |
| 28 | + }, |
| 29 | + "compass:exports": { |
| 30 | + ".": "./src/index.ts" |
| 31 | + }, |
| 32 | + "types": "./dist/index.d.ts", |
| 33 | + "scripts": { |
| 34 | + "bootstrap": "npm run compile", |
| 35 | + "compile": "tsc -p tsconfig.json", |
| 36 | + "typecheck": "tsc -p tsconfig-lint.json --noEmit", |
| 37 | + "eslint": "eslint-compass", |
| 38 | + "prettier": "prettier-compass", |
| 39 | + "lint": "npm run eslint . && npm run prettier -- --check .", |
| 40 | + "depcheck": "compass-scripts check-peer-deps && depcheck", |
| 41 | + "check": "npm run typecheck && npm run lint && npm run depcheck", |
| 42 | + "check-ci": "npm run check", |
| 43 | + "test": "mocha", |
| 44 | + "test-electron": "xvfb-maybe electron-mocha --no-sandbox", |
| 45 | + "test-cov": "nyc --compact=false --produce-source-map=false -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test", |
| 46 | + "test-watch": "npm run test -- --watch", |
| 47 | + "test-ci": "npm run test-cov", |
| 48 | + "test-ci-electron": "npm run test-electron", |
| 49 | + "reformat": "npm run eslint . -- --fix && npm run prettier -- --write ." |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "react": "^17.0.2", |
| 53 | + "react-dom": "^17.0.2" |
| 54 | + }, |
| 55 | + "devDependencies": { |
| 56 | + "@mongodb-js/compass-app-registry": "^9.4.18", |
| 57 | + "@mongodb-js/eslint-config-compass": "^1.4.5", |
| 58 | + "@mongodb-js/mocha-config-compass": "^1.7.0", |
| 59 | + "@mongodb-js/prettier-config-compass": "^1.2.8", |
| 60 | + "@mongodb-js/testing-library-compass": "^1.3.8", |
| 61 | + "@mongodb-js/tsconfig-compass": "^1.2.9", |
| 62 | + "@types/chai": "^4.2.21", |
| 63 | + "@types/chai-dom": "^0.0.10", |
| 64 | + "@types/mocha": "^9.0.0", |
| 65 | + "@types/react": "^17.0.5", |
| 66 | + "@types/react-dom": "^17.0.10", |
| 67 | + "@types/sinon-chai": "^3.2.5", |
| 68 | + "chai": "^4.3.6", |
| 69 | + "depcheck": "^1.4.1", |
| 70 | + "mocha": "^10.2.0", |
| 71 | + "nyc": "^15.1.0", |
| 72 | + "sinon": "^17.0.1", |
| 73 | + "typescript": "^5.8.3", |
| 74 | + "xvfb-maybe": "^0.2.1" |
| 75 | + }, |
| 76 | + "is_compass_plugin": true |
| 77 | +} |
0 commit comments