forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.28 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "compass-preferences-model",
"description": "Compass preferences model",
"author": "Lucas Hrabovsky <[email protected]>",
"version": "2.25.1",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/compass",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"files": [
"dist"
],
"license": "SSPL",
"main": "dist/index.js",
"compass:main": "src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/.esm-wrapper.mjs",
"require": "./dist/index.js"
},
"./provider": "./dist/provider.js"
},
"compass:exports": {
".": "./src/index.ts",
"./provider": "./src/provider.ts"
},
"types": "./dist/index.d.ts",
"scripts": {
"bootstrap": "npm run compile",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\" || true",
"precompile": "npm run clean",
"compile": "tsc -p tsconfig.json && gen-esm-wrapper . ./dist/.esm-wrapper.mjs",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"check": "npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test-check-ci": "npm run check && npm test",
"test": "mocha",
"test-ci": "npm run test",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"dependencies": {
"@mongodb-js/compass-logging": "^1.4.2",
"@mongodb-js/compass-user-data": "^0.3.2",
"bson": "^6.7.0",
"hadron-app-registry": "^9.2.1",
"hadron-ipc": "^3.2.19",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"yargs-parser": "^21.1.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.1.3",
"@mongodb-js/mocha-config-compass": "^1.3.9",
"@testing-library/react": "^12.1.5",
"@types/js-yaml": "^4.0.5",
"@types/yargs-parser": "21.0.0",
"chai": "^4.3.6",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"sinon": "^9.2.3"
}
}