forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.92 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
80
{
"name": "@lucafabbian/firepad",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "Collaborative text editing powered by Firebase - mantained and working fork",
"version": "1.5.20",
"author": "Firebase (https://firebase.google.com/)",
"contributors": [
"Luca Fabbian <[email protected]>",
"Michael Lehenbauer <[email protected]>"
],
"homepage": "http://www.firepad.io/",
"repository": {
"type": "git",
"url": "https://github.com/lucafabbian/firepad.git"
},
"bugs": {
"url": "https://github.com/lucafabbian/firepad/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://firebase.mit-license.org/"
}
],
"keywords": [
"text",
"word",
"editor",
"firebase",
"realtime",
"collaborative",
"codemirror6"
],
"main": "src/firepad.js",
"module": "src/firepad.js",
"type": "module",
"files": [
"dist/**",
"src/**",
"LICENSE",
"README.md",
"package.json"
],
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"ace-builds": "^1.6.0",
"async-dialog": "^0.0.1",
"babel-jest": "^28.1.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jsdom": "^16.2.2",
"monaco-editor": "^0.20.0",
"parcel": "^2.6.0",
"prettier": "^2.7.0"
},
"peerDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/commands": "^6.1.0",
"codemirror": "^6.0.0",
"firebase": "^9.0.0"
},
"scripts": {
"prettify": "prettier --write src/* test/*",
"examples": "parcel examples/*.html --dist-dir=examples-dist",
"build": "parcel build examples/*.html --dist-dir=examples-dist",
"test": "jest --detectOpenHandles --force-exit"
},
"alias": {
"process": false,
"@lucafabbian/firepad": "./src/firepad.js"
},
"targets": {
"main": false,
"module": false
}
}