File size: 1,434 Bytes
4cadbaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "@k-l-lambda/web-editor",
  "version": "0.1.1",
  "description": "A WebSocket based text file synchronizer between disk and web browser.",
  "keywords": [
    "websocket",
    "text",
    "synchronize"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "browser": "app/lib/index.mjs",
  "scripts": {
    "build": "tsc && tsc --build ./tsconfig.browser.json && webpack",
    "serve": "http-server ./app & tsc --build ./tsconfig.browser.json -w & webpack --watch",
    "dev": "ts-node-dev ./main.ts",
    "test-pack": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/k-l-lambda/web-editor.git"
  },
  "bugs": {
    "url": "https://github.com/k-l-lambda/web-editor/issues"
  },
  "author": "k-l-lambda <k.l.lambda@gmail.com> (https://k-l-lambda.github.io)",
  "license": "ISC",
  "dependencies": {
    "diff": "^4.0.2",
    "events": "^3.2.0",
    "sha1": "^1.1.1",
    "websocket": "^1.0.31"
  },
  "devDependencies": {
    "@purtuga/esm-webpack-plugin": "^1.2.1",
    "@types/node": "^14.6.0",
    "@types/yargs": "^15.0.5",
    "@typescript-eslint/parser": "^3.9.1",
    "eslint": "^7.7.0",
    "http-server": "^0.12.3",
    "ip": "^1.1.5",
    "ts-node-dev": "^1.0.0-pre.60",
    "typescript": "^4.0.2",
    "webpack": "^4.44.1",
    "webpack-cli": "^3.3.12",
    "yargs": "^15.4.1"
  }
}