-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
46
47
{
"name": "markdown-to-notion",
"version": "0.1.0",
"author": "GENYA(https://github.com/wilf312/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wilf312/markdown-to-notion.git"
},
"bugs": {
"url": "https://github.com/wilf312/markdown-to-notion/issues"
},
"keywords": [
"notion",
"markdown"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/markdown-to-notion.umd.cjs",
"module": "./dist/markdown-to-notion.js",
"exports": {
".": {
"import": "./dist/markdown-to-notion.js",
"require": "./dist/markdown-to-notion.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest --config ./vitest.config.ts",
"coverage": "vitest run --coverage --config ./vitest.config.ts",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vitest": "^0.28.4"
},
"dependencies": {
"@types/marked": "^4.0.8",
"@types/prettier": "^2.7.2",
"marked": "^4.2.12",
"prettier": "^2.8.4"
}
}