-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "ast-to-vue",
"private": false,
"version": "0.0.10",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./index.css": "./dist/index.css",
"./dist/index.css": "./dist/index.css"
},
"scripts": {
"dev": "vite",
"build": "npm run build:module && npm run build:types",
"build:module": "vite build",
"build:types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && node scripts/cleanup.js",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/language": "^6.9.0",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.17.1",
"@heroicons/vue": "^2.0.18",
"@lezer/highlight": "^1.1.6",
"ace-builds": "^1.23.4",
"ansi-to-vue3": "^0.1.1",
"axios": "^1.4.0",
"katex": "^0.16.8",
"prismjs": "1.29.0",
"vue": "^3.3.4",
"vue3-ace-editor": "^2.2.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.36.3",
"@types/katex": "^0.16.2",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^4.2.3",
"sass": "^1.63.6",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-prismjs": "^0.0.8",
"vue-tsc": "^1.8.3"
}
}