-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.52 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.52 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
{
"name": "colorsea",
"version": "1.2.2",
"description": "A color tool library written in Typescript, you can use it to convert color spaces, and operate on colors like LESS/SASS ( darken/lighten, saturate/desaturate, spin, mix), and color difference query. 颜色工具库,支持颜色空间的转换、各种颜色操作、多种色差查询, 支持中国色、日本色的查询",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "gulp",
"rollup": "rollup -c --configPlugin typescript",
"clean": "gulp clean",
"lint": "eslint --fix --ext .js,.ts src/ typings/ __tests__/",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"color",
"convert",
"diff",
"rgb",
"deltaE",
"hue",
"lightness",
"saturation",
"hsl",
"color-diff",
"color-space",
"color-names",
"X11",
"CIE",
"CMC",
"色差",
"中国传统色",
"nippon colors"
],
"author": "Natron Kan (waterbeside)",
"homepage": "https://colorsea.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/waterbeside/colorsea"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/plugin-syntax-decorators": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.11",
"@typescript-eslint/parser": "^5.46.0",
"@vuepress/client": "2.0.0-beta.60",
"@vuepress/plugin-back-to-top": "2.0.0-beta.60",
"@vuepress/plugin-register-components": "2.0.0-beta.60",
"babel-jest": "^29.3.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rollup": "^3.7.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vuepress": "2.0.0-beta.60",
"vuepress-plugin-full-text-search2": "^0.4.0"
}
}