-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
79 lines (79 loc) · 2.01 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
78
79
{
"name": "y-monaco",
"version": "0.1.6",
"description": "Monaco editor bindings for Yjs",
"main": "./src/y-monaco.js",
"types": "./dist/src/y-monaco.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"start": "npm run demo",
"demo": "webpack serve",
"dist": "npm run clean && rollup -c && tsc",
"test": "rollup -c && node test/test.node.js",
"lint": "standard",
"watch": "rollup -wc",
"debug": "concurrently 'live-server --port=3443 --entry-file=test.html' 'npm run watch'",
"preversion": "npm run lint && npm run test && npm run dist",
"clean": "rm -rf dist demo/dist"
},
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"types": "./dist/src/y-monaco.d.ts",
"import": "./src/y-monaco.js",
"require": "./dist/y-monaco.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/y-js/y-monaco.git"
},
"keywords": [
"Yjs",
"Monaco"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/y-js/y-monaco/issues"
},
"homepage": "https://github.com/y-js/y-monaco#readme",
"dependencies": {
"lib0": "^0.2.43"
},
"peerDependencies": {
"monaco-editor": ">=0.20.0",
"yjs": "^13.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/node": "^12.20.41",
"concurrently": "^5.3.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"jsdom": "^15.2.1",
"live-server": "^1.2.1",
"monaco-editor": "^0.50.0",
"rollup": "^2.63.0",
"rollup-plugin-postcss": "^4.0.2",
"standard": "^14.3.4",
"style-loader": "^1.3.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"y-protocols": "^1.0.5",
"y-websocket": "^1.3.18",
"yjs": "^13.5.23"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=12.0.0"
}
}