-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "@palmcivet/unitext-markdown",
"version": "0.0.1",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "A markdown extension for monaco",
"scripts": {
"dist": "vite build",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/palmcivet/unitext-markdown.git"
},
"keywords": [
"UniText",
"markdown",
"monaco",
"monaco-extension"
],
"author": "Palm Civet",
"license": "MIT",
"peerDependencies": {
"monaco-editor": "^0.33.0"
},
"devDependencies": {
"tslib": "^2.3.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"rollup": "^1.27.4",
"typescript": "^3.7.2"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0"
}
}