forked from wangsijie/antd-prompt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.6 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": "antd-prompt",
"version": "0.7.0",
"description": "An ant.design helper that auto create a Modal with an optional message prompting the user to input some text.",
"main": "dist/index.js",
"module": "dist/index.m.js",
"esmodule": "dist/index.modern.js",
"source": "src/index.tsx",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle-crl --no-compress --css-modules false --format modern,es,cjs",
"start": "microbundle-crl watch --no-compress --css-modules false --format modern,es,cjs",
"prepare": "run-s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangsijie/antd-prompt.git"
},
"keywords": [
"antd",
"ant-design",
"prompt",
"modal"
],
"author": "Wang Sijie ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangsijie/antd-prompt/issues"
},
"homepage": "https://github.com/wangsijie/antd-prompt#readme",
"peerDependencies": {
"react": "> 16"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"antd": "^5.0.4",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"less": "^3.12.2",
"lint-staged": "^10.5.1",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^4.0.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2"
}
}