-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@launchmenu/applet-quickstart",
"private": true,
"version": "0.0.0",
"description": "A hello-world application for LM",
"types": "build/index.d.ts",
"files": [
"build/**/*.{js,d.ts}"
],
"main": "build/index.js",
"scripts": {
"build": "lm-build-tools --build --production",
"dev": "lm-build-tools --watch --launch --entry ../node_modules/@launchmenu/core/build/startup.js",
"start": "lm-build-tools --launch --production --entry ../node_modules/@launchmenu/core/build/startup.js",
"start:dev": "lm-build-tools --launch --entry ../node_modules/@launchmenu/core/build/startup.js",
"clean": "lm-build-tools --cleanup",
"test": "jest -i",
"test-watch": "jest --watch -i",
"test-watch-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch --config=\"jest.config.js\"",
"prepare": "npm run build",
"install-local": "electron scripts/installLocal.js",
"uninstall-local": "electron scripts/uninstallLocal.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LaunchMenu/LM-applet-quickstart.git"
},
"keywords": [
"LaunchMenu",
"Applet",
"QuickStart"
],
"author": "Tar van Krieken",
"license": "MIT",
"bugs": {
"url": "https://github.com/LaunchMenu/LM-applet-quickstart/issues"
},
"homepage": "https://github.com/LaunchMenu/LM-applet-quickstart#readme",
"peerDependencies": {
"@launchmenu/core": "^0.1.1",
"model-react": "^4.0.1",
"react": "^17.0.0"
},
"devDependencies": {
"@launchmenu/core": "^0.1.4",
"@launchmenu/build-tools": "^0.1.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@types/jest": "^26.0.0",
"@types/react": "^17.0.0",
"jest": "^26.0.1",
"model-react": "^4.0.1",
"react": "^17.0.0",
"ts-jest": "^26.1.0",
"electron": "^9.3.1",
"@launchmenu/applet-help": "^0.1.4",
"@launchmenu/applet-applet-manager": "^0.1.4",
"@launchmenu/applet-session-manager": "^0.1.4",
"@launchmenu/applet-settings-manager": "^0.1.4",
"@launchmenu/applet-window-manager": "^0.1.4",
"@launchmenu/applet-lm-recorder": "^0.1.4"
},
"gitHead": "022dbc089423d10ee0528697003769d2d3aeb7d4",
"publishConfig": {
"access": "public"
}
}