-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"name": "playcanvas-sync",
"version": "2.0.4",
"author": "PlayCanvas <support@playcanvas.com>",
"homepage": "https://playcanvas.com",
"description": "Real-time synchronization of files between PlayCanvas and your local machine",
"keywords": [
"playcanvas",
"sync",
"local"
],
"files": [
"bin",
"src"
],
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/playcanvas/playcanvas-sync/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/playcanvas-sync.git"
},
"dependencies": {
"bottleneck": "^2.19.5",
"commander": "^14.0.3",
"find-process": "^2.0.0",
"gitignore-parser": "0.0.2"
},
"devDependencies": {
"@playcanvas/eslint-config": "2.1.0",
"chai": "6.2.2",
"eslint": "9.39.2",
"globals": "17.3.0",
"mocha": "11.7.5",
"nock": "14.0.11",
"sinon": "21.0.1"
},
"scripts": {
"lint": "eslint src bin test",
"test": "mocha test/**/*.test.js",
"test:unit": "mocha test/unit/**/*.test.js",
"test:integration": "mocha test/integration/**/*.test.js"
},
"bin": {
"pcsync": "bin/pcsync.js",
"pcwatch": "bin/pcwatch.js"
}
}