-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.29 KB
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
{
"name": "markdown-area-element",
"version": "0.2.3",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "MarkDown Editor element based on Web Components & WebCell v2",
"keywords": [
"markdown",
"html",
"rich-text",
"editor",
"wysiwyg",
"element",
"web",
"component",
"web-cell"
],
"source": "source/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"homepage": "https://web-cell.dev/markdown-area-element/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/markdown-area-element.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/markdown-area-element/issues"
},
"dependencies": {
"@swc/helpers": "^0.3.2",
"file-cell": "^0.1.0",
"markdown-ime": "^1.0.3",
"marked": "^4.0.12",
"regenerator-runtime": "^0.13.9",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"web-cell": "^2.4.0-rc.6",
"web-utility": "^3.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@types/marked": "^4.0.2",
"@types/turndown": "^5.0.1",
"element-internals-polyfill": "^0.1.54",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"typedoc": "^0.22.11",
"typedoc-plugin-mdn-links": "^1.0.5",
"typescript": "~4.3.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{html,md,less,json,yml,js,ts,tsx}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"pack-docs": "rm -rf docs/ && typedoc source/",
"pack-dist": "rm -rf dist/ && parcel build source/index.ts",
"build": "npm run pack-docs && npm run pack-dist",
"prepublishOnly": "npm test && npm run build"
}
}