-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 852 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 852 Bytes
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
{
"name": "package-launcher",
"version": "1.0.0",
"description": "App Launcher Package",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"install:components": "cd ./components && npm install",
"build:components": "cd ./components && npm run build",
"dev:components": "cd ./components && npm run dev",
"postinstall": "run-p install:*",
"build": "run-p build:*",
"dev": "run-p dev:*"
},
"author": "",
"license": "ISC",
"grid_editor": {
"componentsPath": "components/dist/components.js",
"preferenceComponent": "launcher-preference",
"shortDescription": "Launch applications from Grid Editor"
},
"devDependencies": {
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"npm-run-all": "^4.1.5"
}
}