-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "yank-note-extension-math",
"version": "0.3.3",
"displayName": "数学扩展",
"description": "面向数学用户的 Yank Note 扩展",
"author": "Mirion",
"license": "MIT",
"keywords": [],
"repository": "github:MirionQs/yank-note-extension-math",
"homepage": "https://github.com/MirionQs/yank-note-extension-math",
"main": "./dist/index.js",
"icon": "./icon.png",
"engines": {
"node": ">=18.20.2",
"yank-note": ">=3.75.4"
},
"themes": [
{
"name": "香蕉空间",
"css": "./themes/banana-space.css"
},
{
"name": "多彩笔记",
"css": "./themes/colorful-note.css"
}
],
"files": [
"*.md",
"dist",
"themes",
"icon.png"
],
"scripts": {
"link-extension": "link-yn-extension",
"unlink-extension": "link-yn-extension --unlink",
"dev": "vite build --watch",
"build": "vue-tsc --noEmit && vite build",
"lint": "vue-tsc --noEmit && yarn run eslint '{src,__tests__}/**/*.{js,ts,tsx,vue}'",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublish": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@yank-note/runtime-api": "^3.75.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.7.1",
"markdown-it-attributes": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.26.0",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vue": "^3.4.10",
"vue-tsc": "^0.34.11"
}
}