mind-elixir 5.8.2 → 5.8.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/dist/MindElixir.css +1 -1
- package/dist/MindElixir.iife.js +2 -2
- package/dist/MindElixir.js +5 -5
- package/dist/MindElixirLite.css +1 -1
- package/dist/MindElixirLite.iife.js +4 -4
- package/dist/MindElixirLite.js +171 -171
- package/package.json +111 -111
- package/readme.md +470 -470
package/package.json
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mind-elixir",
|
|
3
|
-
"version": "5.8.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Mind elixir is a free open source mind map core.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"mind-elixir",
|
|
8
|
-
"mindmap",
|
|
9
|
-
"dom",
|
|
10
|
-
"visualization"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"prepare": "husky install",
|
|
14
|
-
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{js,json,ts}\" --fix",
|
|
15
|
-
"dev": "vite",
|
|
16
|
-
"build": "node build.js && tsc",
|
|
17
|
-
"tsc": "tsc",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"test": "playwright test",
|
|
20
|
-
"test:ui": "playwright test --ui",
|
|
21
|
-
"test:clean": "rimraf .nyc_output coverage",
|
|
22
|
-
"test:coverage": "pnpm test:clean && pnpm test && pnpm nyc && npx http-server ./coverage",
|
|
23
|
-
"nyc": "nyc report --reporter=html",
|
|
24
|
-
"doc": "api-extractor run --local --verbose",
|
|
25
|
-
"doc:md": "api-documenter markdown --input-folder ./api --output-folder ./md",
|
|
26
|
-
"beta": "npm run build && npm publish --tag beta"
|
|
27
|
-
},
|
|
28
|
-
"exports": {
|
|
29
|
-
".": {
|
|
30
|
-
"types": "./dist/types/index.d.ts",
|
|
31
|
-
"import": "./dist/MindElixir.js",
|
|
32
|
-
"require": "./dist/MindElixir.js"
|
|
33
|
-
},
|
|
34
|
-
"./lite": {
|
|
35
|
-
"import": "./dist/MindElixirLite.iife.js"
|
|
36
|
-
},
|
|
37
|
-
"./example": {
|
|
38
|
-
"types": "./dist/types/exampleData/1.d.ts",
|
|
39
|
-
"import": "./dist/example.js",
|
|
40
|
-
"require": "./dist/example.js"
|
|
41
|
-
},
|
|
42
|
-
"./LayoutSsr": {
|
|
43
|
-
"types": "./dist/types/utils/LayoutSsr.d.ts",
|
|
44
|
-
"import": "./dist/LayoutSsr.js",
|
|
45
|
-
"require": "./dist/LayoutSsr.js"
|
|
46
|
-
},
|
|
47
|
-
"./readme.md": "./readme.md",
|
|
48
|
-
"./package.json": "./package.json",
|
|
49
|
-
"./style": "./dist/MindElixir.css",
|
|
50
|
-
"./style.css": "./dist/MindElixir.css",
|
|
51
|
-
"./plaintextConverter": {
|
|
52
|
-
"types": "./dist/types/utils/plaintextConverter.d.ts",
|
|
53
|
-
"import": "./dist/PlaintextConverter.js"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"typesVersions": {
|
|
57
|
-
"*": {
|
|
58
|
-
"example": [
|
|
59
|
-
"./dist/types/exampleData/1.d.ts"
|
|
60
|
-
]
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"main": "dist/MindElixir.js",
|
|
64
|
-
"types": "dist/types/index.d.ts",
|
|
65
|
-
"lint-staged": {
|
|
66
|
-
"src/**/*.{ts,js}": [
|
|
67
|
-
"eslint --cache --fix"
|
|
68
|
-
],
|
|
69
|
-
"src/**/*.{json,less}": [
|
|
70
|
-
"prettier --write"
|
|
71
|
-
]
|
|
72
|
-
},
|
|
73
|
-
"files": [
|
|
74
|
-
"package.json",
|
|
75
|
-
"dist"
|
|
76
|
-
],
|
|
77
|
-
"repository": "github:SSShooter/mind-elixir-core",
|
|
78
|
-
"homepage": "https://mind-elixir.com/",
|
|
79
|
-
"author": "ssshooter",
|
|
80
|
-
"license": "MIT",
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"@commitlint/cli": "^20.0.0",
|
|
83
|
-
"@commitlint/config-conventional": "^20.0.0",
|
|
84
|
-
"@eslint/eslintrc": "^3.3.1",
|
|
85
|
-
"@eslint/js": "^9.36.0",
|
|
86
|
-
"@microsoft/api-documenter": "^7.26.34",
|
|
87
|
-
"@microsoft/api-extractor": "^7.52.13",
|
|
88
|
-
"@playwright/test": "^1.58.0",
|
|
89
|
-
"@rollup/plugin-strip": "^3.0.4",
|
|
90
|
-
"@types/node": "^24.5.2",
|
|
91
|
-
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
92
|
-
"@typescript-eslint/parser": "^8.44.1",
|
|
93
|
-
"@viselect/vanilla": "3.9.0",
|
|
94
|
-
"@zumer/snapdom": "^1.9.11",
|
|
95
|
-
"eslint": "^9.36.0",
|
|
96
|
-
"eslint-config-prettier": "^10.1.8",
|
|
97
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
98
|
-
"globals": "^16.4.0",
|
|
99
|
-
"husky": "^9.1.7",
|
|
100
|
-
"katex": "^0.16.22",
|
|
101
|
-
"less": "^4.4.1",
|
|
102
|
-
"lint-staged": "^16.2.1",
|
|
103
|
-
"marked": "^16.3.0",
|
|
104
|
-
"nyc": "^17.1.0",
|
|
105
|
-
"prettier": "3.6.2",
|
|
106
|
-
"rimraf": "^6.0.1",
|
|
107
|
-
"simple-markdown-to-html": "^1.0.0",
|
|
108
|
-
"typescript": "^5.9.2",
|
|
109
|
-
"vite": "^7.1.7",
|
|
110
|
-
"vite-plugin-istanbul": "^7.2.0"
|
|
111
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mind-elixir",
|
|
3
|
+
"version": "5.8.3-beta.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Mind elixir is a free open source mind map core.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mind-elixir",
|
|
8
|
+
"mindmap",
|
|
9
|
+
"dom",
|
|
10
|
+
"visualization"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"prepare": "husky install",
|
|
14
|
+
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{js,json,ts}\" --fix",
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"build": "node build.js && tsc",
|
|
17
|
+
"tsc": "tsc",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"test": "playwright test",
|
|
20
|
+
"test:ui": "playwright test --ui",
|
|
21
|
+
"test:clean": "rimraf .nyc_output coverage",
|
|
22
|
+
"test:coverage": "pnpm test:clean && pnpm test && pnpm nyc && npx http-server ./coverage",
|
|
23
|
+
"nyc": "nyc report --reporter=html",
|
|
24
|
+
"doc": "api-extractor run --local --verbose",
|
|
25
|
+
"doc:md": "api-documenter markdown --input-folder ./api --output-folder ./md",
|
|
26
|
+
"beta": "npm run build && npm publish --tag beta"
|
|
27
|
+
},
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/types/index.d.ts",
|
|
31
|
+
"import": "./dist/MindElixir.js",
|
|
32
|
+
"require": "./dist/MindElixir.js"
|
|
33
|
+
},
|
|
34
|
+
"./lite": {
|
|
35
|
+
"import": "./dist/MindElixirLite.iife.js"
|
|
36
|
+
},
|
|
37
|
+
"./example": {
|
|
38
|
+
"types": "./dist/types/exampleData/1.d.ts",
|
|
39
|
+
"import": "./dist/example.js",
|
|
40
|
+
"require": "./dist/example.js"
|
|
41
|
+
},
|
|
42
|
+
"./LayoutSsr": {
|
|
43
|
+
"types": "./dist/types/utils/LayoutSsr.d.ts",
|
|
44
|
+
"import": "./dist/LayoutSsr.js",
|
|
45
|
+
"require": "./dist/LayoutSsr.js"
|
|
46
|
+
},
|
|
47
|
+
"./readme.md": "./readme.md",
|
|
48
|
+
"./package.json": "./package.json",
|
|
49
|
+
"./style": "./dist/MindElixir.css",
|
|
50
|
+
"./style.css": "./dist/MindElixir.css",
|
|
51
|
+
"./plaintextConverter": {
|
|
52
|
+
"types": "./dist/types/utils/plaintextConverter.d.ts",
|
|
53
|
+
"import": "./dist/PlaintextConverter.js"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"typesVersions": {
|
|
57
|
+
"*": {
|
|
58
|
+
"example": [
|
|
59
|
+
"./dist/types/exampleData/1.d.ts"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"main": "dist/MindElixir.js",
|
|
64
|
+
"types": "dist/types/index.d.ts",
|
|
65
|
+
"lint-staged": {
|
|
66
|
+
"src/**/*.{ts,js}": [
|
|
67
|
+
"eslint --cache --fix"
|
|
68
|
+
],
|
|
69
|
+
"src/**/*.{json,less}": [
|
|
70
|
+
"prettier --write"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"files": [
|
|
74
|
+
"package.json",
|
|
75
|
+
"dist"
|
|
76
|
+
],
|
|
77
|
+
"repository": "github:SSShooter/mind-elixir-core",
|
|
78
|
+
"homepage": "https://mind-elixir.com/",
|
|
79
|
+
"author": "ssshooter",
|
|
80
|
+
"license": "MIT",
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@commitlint/cli": "^20.0.0",
|
|
83
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
84
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
85
|
+
"@eslint/js": "^9.36.0",
|
|
86
|
+
"@microsoft/api-documenter": "^7.26.34",
|
|
87
|
+
"@microsoft/api-extractor": "^7.52.13",
|
|
88
|
+
"@playwright/test": "^1.58.0",
|
|
89
|
+
"@rollup/plugin-strip": "^3.0.4",
|
|
90
|
+
"@types/node": "^24.5.2",
|
|
91
|
+
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
92
|
+
"@typescript-eslint/parser": "^8.44.1",
|
|
93
|
+
"@viselect/vanilla": "3.9.0",
|
|
94
|
+
"@zumer/snapdom": "^1.9.11",
|
|
95
|
+
"eslint": "^9.36.0",
|
|
96
|
+
"eslint-config-prettier": "^10.1.8",
|
|
97
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
98
|
+
"globals": "^16.4.0",
|
|
99
|
+
"husky": "^9.1.7",
|
|
100
|
+
"katex": "^0.16.22",
|
|
101
|
+
"less": "^4.4.1",
|
|
102
|
+
"lint-staged": "^16.2.1",
|
|
103
|
+
"marked": "^16.3.0",
|
|
104
|
+
"nyc": "^17.1.0",
|
|
105
|
+
"prettier": "3.6.2",
|
|
106
|
+
"rimraf": "^6.0.1",
|
|
107
|
+
"simple-markdown-to-html": "^1.0.0",
|
|
108
|
+
"typescript": "^5.9.2",
|
|
109
|
+
"vite": "^7.1.7",
|
|
110
|
+
"vite-plugin-istanbul": "^7.2.0"
|
|
111
|
+
}
|
|
112
112
|
}
|