-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "commoners-starter-kit",
"version": "0.0.0",
"description": "A template Commoners application.",
"private": true,
"type": "module",
"license": "MIT",
"author": "Garrett Flynn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/neuralinterfaces/commoners-starter-kit.git"
},
"workspaces": [
"src/**"
],
"scripts": {
"start": "commoners --target desktop",
"dev": "commoners",
"services": "commoners share",
"service:node": "commoners share --service localNode",
"service:python": "commoners share --service python",
"build": "commoners build",
"build:services": "commoners build --target services",
"build:desktop": "commoners build --target desktop",
"build:mobile": "commoners build --target mobile",
"build:node": "commoners build --target services --service localNode",
"share": "commoners share --service python",
"launch": "commoners launch",
"launch:desktop": "commoners launch --desktop",
"launch:mobile": "commoners launch --mobile",
"env:init": "npm install",
"env:clear": "rm -rf package-lock.json && rm -rf node_modules"
},
"dependencies": {
"@capacitor-community/bluetooth-le": "^3.1.1"
},
"devDependencies": {
"@capacitor/android": "^5.5.0",
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "^5.3.0",
"@capacitor/core": "^5.3.0",
"@capacitor/ios": "^5.3.0",
"@commoners/bluetooth": "0.0.38",
"@commoners/local-services": "0.0.43",
"@commoners/serial": "0.0.38",
"commoners": "0.0.47"
}
}