-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "ts-in-markdown",
"displayName": "TS in Markdown",
"version": "0.0.15",
"private": true,
"icon": "images/icon.png",
"description": "Language support for TS in markdown",
"categories": [
"Programming Languages"
],
"keywords": [
"markdown",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Dali-Team/ts-in-markdown"
},
"publisher": "Amour1688",
"main": "./node_modules/@ts-in-markdown/vscode-client/out/extension",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"package": "vsce package --yarn",
"test": "jest",
"watch": "tsc -b tsconfig.build.json -w"
},
"activationEvents": [
"onLanguage:markdown"
],
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typescript": "latest",
"vsce": "latest"
},
"engines": {
"vscode": "^1.58.0"
}
}