-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "xmind-generator",
"version": "1.0.1",
"type": "module",
"engines": {
"node": ">=14"
},
"types": "./lib/esm/exports.d.ts",
"exports": {
".": {
"import": "./lib/esm/exports.js",
"require": "./lib/cjs/exports.cjs"
}
},
"module": "./lib/esm/exports.js",
"typings": "./lib/esm/exports.d.ts",
"sideEffects": false,
"files": [
"lib",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/xmindltd/xmind-generator.git"
},
"bugs": {
"url": "https://github.com/xmindltd/xmind-generator/issues"
},
"keywords": [
"xmind-generator",
"xmind",
"xmindsdk",
"xmind-sdk",
"xmind-package"
],
"author": "Xmind Ltd.",
"description": "A javascript module that creates mindmaps and generates Xmind files.",
"homepage": "https://github.com/xmindltd/xmind-generator#readme",
"license": "MIT",
"scripts": {
"build": "yarn clean && unbuild && yarn postbuild",
"postbuild": "rimraf -g lib/**/*.spec.js lib/**/*.spec.d.ts lib/**/*.spec.cjs",
"clean": "rm -rf lib",
"test": "vitest",
"prettier": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/node": "^18.11.18",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"vitest": "^0.27.1",
"unbuild": "^2.0.0",
"rimraf": "^5.0.1",
"jszip": "3.10.1"
},
"maintainers": [
{
"name": "ray",
"email": "[email protected]"
},
{
"name": "synix",
"email": "[email protected]"
},
{
"name": "xmind_official",
"email": "[email protected]"
}
]
}