-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "@mind-wired/core",
"version": "0.2.0",
"description": "Javascript based mindmap library. It provides dragging, aligment, styling(node, edge) and editing functionality.",
"private": false,
"type": "module",
"main": "./dist/mind-wired.umd.cjs",
"module": "./dist/mind-wired.js",
"types": "./dist/mind-wired.d.ts",
"exports": {
".": {
"types": "./dist/mind-wired.d.ts",
"import": "./dist/mind-wired.js",
"require": "./dist/mind-wired.umd.cjs"
},
"./mind-wired.css": "./dist/style.css",
"./mind-wired-form.scss": "./src/assets/extra/mind-wired-form.scss"
},
"files": [
"./dist/**/*",
"./src/assets/extra/mind-wired-form.scss"
],
"keywords": [
"mindmap"
],
"bugs": {
"url": "https://github.com/yeori/mind-wired/issues",
"email": "yeori.seo@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeori/mind-wired.git"
},
"author": "yeori.seo@gmail.com",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:report": "vitest --coverage.enabled",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.5.0",
"happy-dom": "^14.3.9",
"sass": "^1.71.1",
"terser": "^5.30.0",
"typescript": "^4.9.3",
"vite": "^5.1.5",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.5.0",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
"svelte": "^4.2.13"
}
}