-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
77 lines (77 loc) · 2.38 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
76
77
{
"name": "compass-preferences-model",
"description": "Compass preferences model",
"author": "Lucas Hrabovsky <lucas@mongodb.com>",
"version": "2.30.0",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "compass@mongodb.com"
},
"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.10",
"@mongodb-js/compass-user-data": "^0.3.10",
"@mongodb-js/devtools-proxy-support": "^0.4.1",
"bson": "^6.8.0",
"hadron-app-registry": "^9.2.7",
"hadron-ipc": "^3.2.25",
"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.7",
"@mongodb-js/mocha-config-compass": "^1.4.2",
"@mongodb-js/testing-library-compass": "^1.0.2",
"@mongodb-js/tsconfig-compass": "^1.0.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"
}
}