forked from abolix/Persian-Lorem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1000 Bytes
/
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
{
"name": "plorem",
"displayName": "Persian Quran Lorem",
"description": "Persian random text generator based on Quran translation",
"version": "0.0.2",
"publisher": "mqt",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sabereen/vscode-plorem/"
},
"bugs": {
"url": "https://github.com/sabereen/vscode-plorem/issues"
},
"homepage": "https://github.com/sabereen/vscode-plorem/",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.GenerateText",
"title": "Persian Quran Lorem"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.1.5",
"@types/vscode": "^1.78.0",
"typescript": "^5.0.4"
}
}