-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "brainsatplay-application",
"version": "0.0.0",
"description": "The Platform for Neural Interfaces",
"private": true,
"type": "module",
"license": "MIT",
"author": "Garrett Flynn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/neuralinterfaces/brainsatplay.git"
},
"scripts": {
"start": "commoners --target desktop",
"dev": "commoners",
"build": "commoners build",
"build:packages": "pnpm -r run build",
"build:desktop": "commoners build --target desktop",
"build:mobile": "commoners build --target mobile",
"launch": "commoners launch",
"launch:desktop": "commoners launch --desktop",
"launch:mobile": "commoners launch --mobile",
"cleanup": "pnpm run clean:modules && pnpm run clean:dist",
"clean:modules": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"clean:dist": "rm -rf dist && pnpm -r exec rm -rf dist",
"docs": "cd docs && npm start",
"build:docs": "cd docs && npm run build"
},
"dependencies": {
"lit": "^3.1.4",
"uplot": "^1.6.30"
},
"devDependencies": {
"@capacitor-community/bluetooth-le": "6.0.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.0",
"@capacitor/core": "^6.1.0",
"@capacitor/ios": "^6.1.0",
"@commoners/bluetooth": "0.0.52",
"commoners": "0.0.52",
"vite-plugin-dts": "^3.9.1"
}
}