-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
111 lines (111 loc) · 2.86 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
{
"name": "literate",
"displayName": "Literate Programming",
"description": "Literate Programming for vscode",
"publisher": "jesterking",
"icon": "media/literate_programming.png",
"repository": {
"url": "https://github.com/jesterKing/literate"
},
"version": "0.14.4",
"engines": {
"vscode": "^1.63.2"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"literate",
"paradigm",
"documentation",
"literate programming"
],
"license": "MIT",
"author": {
"name": "Nathan 'jesterKing' Letwory",
"email": "[email protected]",
"url": "https://letworyinteractive.com"
},
"activationEvents": [
"onview:fragmentExplorer"
],
"main": "./out/main.js",
"contributes": {
"views": {
"explorer": [
{
"id": "fragmentExplorer",
"name": "Literate Fragments",
"icon": "$(book)",
"contextualTitle": "Literate Fragment Explorer"
}
]
},
"menus": {
"view/title": [
{
"command": "fragmentExplorer.refreshEntry",
"when": "view == fragmentExplorer",
"group": "navigation"
}
]
},
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./style.css"
],
"commands": [
{
"command": "literate.process",
"title": "Literate: Process"
},
{
"command": "literate.create_fragment_for_tag",
"title": "Literate: Create Fragment For Tag"
},
{
"command": "literate.split_fragment",
"title": "Literate: Split Fragment"
},
{
"command": "fragmentExplorer.refreshEntry",
"title": "Refresh",
"icon": "$(refresh)"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/markdown-it": "^12.0.1",
"@types/mocha": "^8.0.4",
"@types/node": "^20.10.5",
"@types/vscode": "^1.63.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vscode/test-electron": "^2.3.8",
"esbuild": "^0.12.15",
"eslint": "^8.56.0",
"glob": "^7.1.6",
"mocha": ">8.2.1",
"typescript": "^4.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"highlight.js": "^11.0.1",
"markdown-it": "^12.3.2"
}
}