This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
74
75
76
{
"name": "holiday-avatar",
"version": "0.0.5",
"description": "Vue library for generating nice user avatar. (Inspired by react-nice-avatar)",
"files": [
"dist"
],
"main": "./dist/holiday-avatar.umd.js",
"module": "./dist/holiday-avatar.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/holiday-avatar.es.js",
"require": "./dist/holiday-avatar.umd.js"
}
},
"scripts": {
"dev": "rimraf demo/dist && NODE_ENV=development rollup -w -c rollup.config.demo.ts",
"build:pkg": "rimraf dist && rollup -c && copyfiles -f src/index.d.ts dist",
"build:demo": "rimraf demo/dist && rollup -c rollup.config.demo.ts",
"prepare": "npm run build:pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wjq990112/holiday-avatar.git"
},
"keywords": [
"vue",
"avatar",
"vue-avatar",
"avatar-generator",
"avatar-placeholder"
],
"author": "wjq990112<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wjq990112/holiday-avatar/issues"
},
"homepage": "https://github.com/wjq990112/holiday-avatar#readme",
"dependencies": {
"chroma-js": "^2.1.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/chroma-js": "^2.1.3",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.5",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/compiler-sfc": "^3.1.2",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.52.3",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-windicss": "^1.1.1",
"sass": "^1.35.1",
"tslib": "^2.3.0",
"typescript": "^4.3.4",
"vite": "^2.3.8",
"vue": "^3.1.2"
},
"peerDependencies": {
"vue": ">=3.0.0"
}
}