-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "autohue.js",
"version": "1.0.4",
"description": "一个自动提取图片主题色让图片和背景融为一体的工具",
"main": "./dist/autohue.cjs.js",
"type": "module",
"module": "./dist/autohue.esm.js",
"exports": {
"import": "./dist/autohue.esm.js",
"require": "./dist/autohue.cjs.js",
"types": "./dist/types/index.d.ts"
},
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/auto-plugin/autohue.js.git"
},
"files": [
"dist/*",
"./public/logo.svg",
"LICENSE",
"README.md"
],
"homepage": "https://auto-plugin.github.io/autohue.js/",
"scripts": {
"dev": "rolldown -c ./rolldown.config.dev.ts --watch",
"vnr": "vnr",
"build": "tsc --emitDeclarationOnly && rolldown -c ./rolldown.config.ts"
},
"keywords": [
"color-thief",
"fast-average-color",
"image-color",
"color-picker",
"autohue.js"
],
"devDependencies": {
"@types/node": "^20.2.1",
"lint-staged": "^10",
"rolldown": "1.0.0-beta.1",
"rollup-plugin-banner2": "^1.3.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-terser": "^7.0.2",
"tsc-alias": "^1.8.6",
"typescript": "^4.4.4",
"vnr": "^1.0.5"
},
"author": "Larry Zhu",
"license": "MIT"
}