-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.96 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@babsey/code-graph",
"version": "0.11.3",
"author": "babsey <spreizer@web.de>",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/code-graph.umd.cjs",
"module": "./dist/code-graph.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/code-graph.js",
"require": "./dist/code-graph.umd.cjs"
},
"./style.css": "./dist/code-graph.css"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc",
"clean": "rimraf dist",
"lint": "eslint ./lib --fix",
"lint:all": "eslint . --fix",
"format": "prettier --write lib/ src/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@codemirror/lang-python": "~6.2",
"@codemirror/theme-one-dark": "~6.1",
"@vueuse/core": "~14.1",
"baklavajs": "~2.8",
"codemirror": "~6.0",
"moment": "~2.30",
"mustache": "~4.2",
"splitpanes": "~4.0",
"toposort": "~2.0",
"uuid": "~13.0",
"vue": "~3.5",
"vue-clipboard3": "~2.0",
"vue-codemirror": "~6.1"
},
"devDependencies": {
"@tsconfig/node-lts": "~24.0",
"@types/mustache": "~4.2",
"@types/node": "~25.1",
"@types/toposort": "~2.0",
"@vitejs/plugin-vue": "~6.0",
"@vue/eslint-config-prettier": "~10.2",
"@vue/eslint-config-typescript": "~14.6",
"@vue/language-core": "~3.2",
"@vue/tsconfig": "~0.8",
"eslint": "~9.39",
"eslint-plugin-vue": "~10.7",
"jiti": "~2.6",
"npm-run-all2": "~8.0",
"prettier": "~3.8",
"rimraf": "~6.1",
"sass-embedded": "~1.97",
"typescript": "~5.9",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "~7.3",
"vite-plugin-vue-devtools": "~8.0",
"vitepress": "^2.0.0-alpha.16",
"vue-tsc": "~3.2"
}
}