-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 970 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
{
"name": "canvas-markdown",
"version": "3.0.2",
"description": "A userscript that allows markdown input on Canvas",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "prettier --cache --write . && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theusaf/canvas-markdown.git"
},
"keywords": [
"userscript",
"canvas",
"markdown"
],
"author": "theusaf",
"license": "MIT",
"bugs": {
"url": "https://github.com/theusaf/canvas-markdown/issues"
},
"homepage": "https://github.com/theusaf/canvas-markdown#readme",
"devDependencies": {
"@types/codemirror": "^5.60.15",
"@types/highlightjs": "^9.12.6",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}