-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "markflowy-theme-template",
"version": "0.0.5",
"license": "MIT",
"homepage": "",
"main": "./dist/index.mjs",
"keywords": [
"markdown",
"theme"
],
"type": "module",
"browser": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.min.js"
},
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"peerDependencies": {
"eslint": ">=7.4.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"test": "vitest run",
"test:dev": "vitest dev",
"delete": "rimraf node_modules",
"prepublish": "yarn build",
"clear": "rimraf dist && rimraf tsconfig.tsbuildinfo"
},
"dependencies": {
"@lezer/highlight": "^1.1.6"
},
"devDependencies": {
"@drl990114/codemirror-themes": "^0.0.1",
"@markflowy/runtime-api": "^0.0.5",
"@markflowy/theme": "^0.0.13",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@types/codemirror": "^5.60.9",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"rimraf": "^5.0.1",
"rollup": "3.29.4",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.1.3"
}
}