-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 856 Bytes
/
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
{
"name": "@wufe/cc",
"description": "Convert colors from xy to rgb and viceversa",
"author": {
"name": "Simone Bembi",
"email": "simone.bembi@gmail.com",
"url": "https://bembi.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/Wufe/cc.git"
},
"version": "1.0.0",
"main": "dist/index.min.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"files": [
"dist",
"esm"
],
"scripts": {
"build": "run-s build:esm build:umd",
"build:esm": "tsc -p tsconfig.es.json",
"build:umd": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-typescript": "^6.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.28.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
}
}