-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "@excalidraw/mermaid-to-excalidraw",
"version": "1.1.0",
"description": "Mermaid to Excalidraw Diagrams",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"type": "module",
"scripts": {
"build": "rimraf -rf ./dist && cross-env tsc -b src",
"test:code": "eslint --max-warnings=0 --ext .js,.ts,.tsx .",
"start": "vite playground",
"build:playground": "tsc --noEmit --project ./playground/tsconfig.json && vite build playground",
"preview": "yarn run build:playground && vite preview --outDir ./public",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch"
},
"dependencies": {
"@excalidraw/markdown-to-text": "0.1.2",
"mermaid": "10.9.0",
"nanoid": "4.0.2"
},
"devDependencies": {
"@babel/core": "7.12.0",
"@excalidraw/eslint-config": "1.0.3",
"@excalidraw/excalidraw": "0.17.1-7381-cdf6d3e",
"@types/mermaid": "9.2.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vitejs/plugin-react-swc": "3.6.0",
"@vitest/coverage-v8": "^1.6.0",
"cross-env": "7.0.3",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"jsdom": "^24.0.0",
"prettier": "2.8.8",
"process": "0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"sass": "1.74.1",
"typescript": "5.2.2",
"vite": "5.2.8",
"vitest": "^1.6.0"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"keywords": []
}