-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.76 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.76 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ledap",
"version": "0.1.13",
"description": "a javascript framwork, which can collaboration with Vue, angular, jquery etc.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "typings/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./react": {
"import": "./dist/react.js",
"require": "./dist/react.js"
},
"./react.css": {
"import": "./dist/react.css"
},
"./core": {
"import": "./dist/core.js",
"require": "./dist/core.js"
}
},
"scripts": {
"dev": "webpack-dev-server --config=./config/webpack.devServer.js",
"dev:react": "webpack-dev-server --config=./config/webpack.react.devServer.js",
"build": "npm run build:umd & npm run build:es6",
"build:umd": "webpack --config=./config/webpack.umd.js",
"build:es6": "webpack --config=./config/webpack.es6.js"
},
"files": [
"src",
"dist",
"umd",
"examples",
"typings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ethercap/ledap.git"
},
"homepage": "https://github.com/ethercap/ledap",
"author": "lishipeng <lspbupt@sina.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/plugin-transform-runtime": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/types": "7.20.7",
"@types/css-modules": "^1.0.5",
"@types/lodash": "^4.17.15",
"babel-loader": "^9.2.1",
"babel-plugin-import": "^1.13.8",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.20.1",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"less": "^4.2.2",
"less-loader": "^12.2.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/runtime": "^7.26.7",
"@types/axios": "^0.14.4",
"axios": "^1.7.9",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"punycode": "^2.3.1"
},
"peerDependencies": {
"antd": "^5.24.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"babel": {
"compact": false,
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"lodash"
]
}
}