-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "playcanvas-sync",
"version": "1.2.0",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "Real-time synchronization of files between PlayCanvas and your local machine",
"keywords": [
"playcanvas",
"sync",
"local"
],
"files": [
"bin",
"docs",
"src"
],
"license": "MIT",
"main": "index.js",
"bugs": {
"url": "https://github.com/playcanvas/playcanvas-sync/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/playcanvas-sync.git"
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config",
"rules": {
"space-unary-ops": "off"
}
},
"eslintIgnore": [
"src/diff/diff_match_patch_uncompressed.js"
],
"dependencies": {
"bottleneck": "^2.19.5",
"commander": "^9.0.0",
"diff": "^5.0.0",
"find-process": "^1.4.7",
"gitignore-parser": "0.0.2",
"mkdirp": "^1.0.4",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {
"@playcanvas/eslint-config": "^1.7.1",
"eslint": "^8.52.0"
},
"scripts": {
"lint": "eslint src bin"
},
"bin": {
"pcsync": "./bin/pcsync.js",
"pcwatch": "./bin/pcwatch.js"
}
}