-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "colorfontcolor",
"version": "2.0.3",
"description": "Generate cool colors",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -w -c",
"build:types": "tsc -b ./tsconfig.json",
"build": "npm run build:types && rollup -c",
"prepublish": "pnpm version && pnpm build"
},
"keywords": [
"color",
"font",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/greatanimalion/colorfont.git"
},
"author": "LB",
"license": "ISC",
"bugs": {
"url": "https://github.com/greatanimalion/colorfont/issues"
},
"dependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"colorfontcolor": "^1.0.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
}
}