-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "wiki_links",
"main": "./lib/index",
"version": "0.2.3",
"description": "Bring wiki style links to Inkdrop.",
"keywords": [],
"repository": "https://github.com/ryanpcmcquen/inkdrop_wiki_links.git",
"license": "MPL-2.0",
"styleSheets": [
"wiki_link.less"
],
"scripts": {
"tc": "tsc --project tsconfig.json",
"build": "yarn tc && babel src/ -s --extensions .js,.jsx,.ts,.tsx -d lib/",
"dev": "babel src/ -s --extensions .js,.jsx,.ts,.tsx -d lib/ --watch"
},
"engines": {
"inkdrop": "^5.x"
},
"dependencies": {
"@textcomplete/codemirror": "0.x.x",
"@textcomplete/core": "0.x.x"
},
"devDependencies": {
"@babel/cli": "7.x.x",
"@babel/core": "7.x.x",
"@babel/plugin-proposal-class-properties": "7.x.x",
"@babel/plugin-proposal-object-rest-spread": "7.x.x",
"@babel/preset-env": "7.x.x",
"@babel/preset-react": "7.x.x",
"@babel/preset-typescript": "7.x.x",
"@types/codemirror": "0.x.x",
"@types/node": "14.x.x",
"@typescript-eslint/eslint-plugin": "4.x.x",
"@typescript-eslint/parser": "4.x.x",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "7.x.x",
"eslint-plugin-module-resolver": "1.x.x",
"prettier": "2.x.x",
"typescript": "4.x.x"
}
}