-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@idealworld/formula-editor",
"type": "module",
"version": "0.6.2",
"description": "A relatively complete formula editor",
"author": {
"name": "gudaoxuri",
"email": "i@sunisle.org",
"url": "https://idealworld.group/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ideal-world/formula-editor.git"
},
"keywords": [
"formula",
"editor",
"code"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/formula-editor.es.js",
"require": "./dist/formula-editor.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"module": "./dist/formula-editor.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && vue-tsc && vite build",
"docs:dev": "vitepress dev docs --host 0.0.0.0",
"docs:build": "npm run publish-typedoc && vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest --run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"coverage": "vitest run --coverage",
"publish-typedoc": "typedoc --options typedoc.json"
},
"peerDependencies": {
"vue": "^3.4.21"
},
"dependencies": {
"@codemirror/autocomplete": "^6.15.0",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.1",
"@codemirror/lint": "^6.5.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.0",
"@lezer/common": "^1.2.1",
"codemirror": "=6.0.1",
"eslint-linter-browserify": "^8.57.0",
"octicons-css": "^19.8.0",
"vue-codemirror6": "^1.2.5",
"vue-i18n": "^9.10.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.3",
"@types/node": "^20.11.29",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.18",
"daisyui": "^4.7.3",
"eslint": "^8.57.0",
"happy-dom": "^14.0.0",
"postcss": "^8.4.36",
"postcss-import": "^16.0.1",
"postcss-nesting": "^12.1.0",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "4.0.0-next.53",
"typedoc-vitepress-theme": "1.0.0-next.9",
"typescript": "^5.4.2",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.6",
"vitepress": "1.0.0-rc.45",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.6"
}
}