-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "@open-formulieren/monaco-json-editor",
"version": "0.2.0",
"description": "A JSON editor using the Monaco editor",
"main": "lib/index.js",
"type": "module",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/**/*'",
"checkformat": "prettier --check 'src/**/*'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/open-formulieren/monaco-json-editor.git"
},
"keywords": [
"monaco",
"editor",
"json"
],
"author": "Maykin Media <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-formulieren/monaco-json-editor/issues"
},
"homepage": "https://github.com/open-formulieren/monaco-json-editor#readme",
"devDependencies": {
"@types/react": "^18.2.79",
"monaco-editor": "^0.49.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0"
},
"peerDependencies": {
"react": "^18.0.0"
}
}