-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 954 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": "lit-markdown-editor",
"version": "2.4.0",
"description": "A texteditor web component for writing markdown.",
"main": "./lib/index.js",
"type": "module",
"types": "types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./lib/index.js"
},
"author": "Austin Mayer <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/tronicboy1/lit-markdown-editor"
},
"dependencies": {
"lit": "^2.6.1",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^4.9.5"
},
"scripts": {
"format": "prettier --write ./",
"lint": "eslint ./src",
"build": "tsc && tsc -p tsconfig.types.json"
}
}