-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "msg-alert",
"version": "1.0.0-beta.4",
"description": "仿 Element-ui 的 Message 组件 | Message component imitating Element-ui",
"main": "dist/msg-alert.cjs.js",
"module": "dist/msg-alert.esm.js",
"unpkg": "dist/msg-alert.js",
"jsdelivr": "dist/msg-alert.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "npx eslint src && npx prettier --check src",
"lint:fix": "npx eslint --fix src && npx prettier --check --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lete114/msg-alert.git"
},
"keywords": [
"msg",
"alert",
"message",
"element",
"element-ui"
],
"author": "Lete乐特",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lete114/msg-alert/issues"
},
"homepage": "https://github.com/Lete114/msg-alert#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.16.0",
"prettier": "^2.6.2",
"rollup": "^2.75.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"simple-unique": "^1.2.0"
}
}