-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "flipper-app-dev",
"displayName": "Flipper Application Development",
"description": "A vscode extension for the development of Flipper Zero® apps.",
"version": "0.1.0",
"author": "paulober",
"publisher": "paulober",
"license": "MPL-2.0",
"icon": "images/icon.png",
"homepage": "https://github.com/paulober/vscode-flipper-app-dev/blob/main/README.md",
"bugs": {
"url": "https://github.com/paulober/vscode-flipper-app-dev/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paulober/vscode-flipper-app-dev.git"
},
"engines": {
"vscode": "^1.87.0",
"node": ">=18.17.1"
},
"main": "./dist/extension.cjs",
"markdown": "github",
"minimumNodeVersion": 18,
"contributes": {
"commands": [
{
"command": "flipper-app-dev.newApp",
"title": "New App",
"category": "Flipper App Development"
},
{
"command": "flipper-app-dev.clean",
"title": "Clean sdk management",
"category": "Flipper App Development"
},
{
"command": "flipper-app-dev.famEdit.new",
"title": "New Flipper Application Manifest",
"category": "Flipper App Development"
},
{
"command": "flipper-app-dev.buildFap",
"title": "Build Flipper Application Package",
"category": "Flipper App Development",
"icon": "$(package)"
},
{
"command": "flipper-app-dev.launchFap",
"title": "Launch Flipper Application Package",
"category": "Flipper App Development",
"icon": "$(run)"
},
{
"command": "flipper-app-dev.openSerial",
"title": "Open Flipper Serial Console",
"category": "Flipper App Development",
"icon": "$(console)"
}
],
"languages": [
{
"id": "fam",
"aliases": [
"FAM",
"fam"
],
"extensions": [
".fam"
]
}
],
"grammars": [
{
"language": "fam",
"scopeName": "source.fam",
"path": "./syntaxes/FlipperApplicationManifest.tmLanguage.json"
}
],
"customEditors": [
{
"viewType": "flipper-app-dev.famEdit",
"displayName": "Flipper Application Manifest",
"selector": [
{
"filenamePattern": "application*.fam"
}
]
}
],
"views": {
"explorer": [
{
"id": "flipper-app-dev-quick-access",
"name": "Flipper App Development",
"type": "tree"
}
]
},
"viewsWelcome": [
{
"view": "flipper-app-dev-quick-access",
"contents": "No Flipper App found in this workspace.\n[Create new Flipper App](command:flipper-app-dev.newApp)"
}
]
},
"activationEvents": [
"workspaceContains:application.fam"
],
"scripts": {
"postinstall": "yarn dlx @yarnpkg/sdks vscode",
"vscode:prepublish": "yarn run package",
"compile": "rollup -c",
"watch": "rollup -cw",
"package": "rollup -c --environment BUILD:production --sourcemap hidden",
"lint": "eslint src --ext mts",
"test": "yarn run lint"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/adm-zip": "^0.5.5",
"@types/node": "18.17.x",
"@types/vscode": "^1.87.0",
"@types/which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"rollup": "^4.13.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"dependencies": {
"adm-zip": "^0.5.12",
"axios": "^1.6.8",
"rimraf": "^5.0.5",
"which": "^4.0.0"
},
"packageManager": "[email protected]"
}