-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
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
{
"name": "milkdown-theme-baka",
"version": "0.0.2",
"type": "module",
"exports": {
".": {
"import": "./src/index.ts"
},
"./style.css": "./src/style.css"
},
"main": "./src/index.ts",
"publishConfig": {
"main": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.es.js"
},
"./style.css": "./lib/style.css"
}
},
"files": [
"lib",
"src"
],
"scripts": {
"start": "concurrently -n es,dts \"vite build --watch\" \"tsc --emitDeclarationOnly --watch\"",
"tsc": "tsc && echo",
"build": "tsc && vite build"
},
"peerDependencies": {
"@milkdown/core": "^7.2.0",
"@milkdown/ctx": "^7.2.0",
"@milkdown/prose": "^7.2.0"
},
"dependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.7",
"clsx": "^2.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@milkdown/core": "^7.2.0",
"@milkdown/ctx": "^7.2.0",
"@milkdown/preset-commonmark": "^7.2.0",
"@milkdown/prose": "^7.2.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@unocss/postcss": "^0.59.4",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quank123wip/milkdown-theme-baka.git"
},
"keywords": [
"milkdown"
],
"author": "quank123wip",
"license": "MIT",
"bugs": {
"url": "https://github.com/quank123wip/milkdown-theme-baka/issues"
},
"homepage": "https://github.com/quank123wip/milkdown-theme-baka#readme"
}