-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "@realm/bindgen",
"version": "0.1.0",
"private": true,
"description": "Binding generator exposing Realm Core to the SDK",
"bin": {
"realm-bindgen": "./bindgen/realm-bindgen.ts"
},
"exports": {
"./*": "./bindgen/src/*"
},
"type": "module",
"scripts": {
"start": "./bindgen/realm-bindgen.ts",
"test": "cd bindgen && tsc --incremental && mocha",
"lint": "eslint bindgen/src"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@types/node": "^18.15.10",
"ajv": "^8.11.0",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"chevrotain": "^10.4.0",
"commander": "^11.1.0",
"debug": "^4.3.4",
"typescript-json-schema": "^0.55.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"chai": "4.3.6",
"cmake-js": "6.3.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.1.0",
"prettier": "^3.2.4",
"tsx": "^4.6.2"
},
"binary": {
"napi_versions": [
6
]
}
}