-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.16 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
{
"name": "@frank17008/react-jsmind",
"version": "1.0.10",
"description": "一个基于jsMind的react思维导图组件",
"main": "dist/umd/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/umd/index.js"
},
"./dist/esm/index.min.css": "./dist/esm/index.min.css",
"./dist/umd/index.min.css": "./dist/umd/index.min.css"
},
"homepage": "https://frank17008.github.io/ReactJsMind",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "webpack-dev-server --config config/webpack.dev.config.js",
"build": "webpack --config config/webpack.prod.config.js && npx dts-bundle-generator -o dist/esm/index.d.ts src/types-entry.ts --external-inlines jsmind dom-to-image --inline-declare-externals --no-check",
"build:types": "npx dts-bundle-generator -o dist/esm/index.d.ts src/types-entry.ts --external-inlines jsmind dom-to-image --inline-declare-externals --no-check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"jsmind",
"思维导图"
],
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">= 16.20.0"
},
"author": "Frank Dong",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"babel-loader": "^9.1.3",
"css-loader": "^3.6.0",
"css-minimizer-webpack-plugin": "^1.3.0",
"dom-to-image": "^2.6.0",
"dts-bundle-generator": "^9.5.1",
"jsmind": "^0.8.5",
"less-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^1.3.0",
"typescript": "^6.0.2",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
}
}