forked from patelka2211/dynamic-colors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.91 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
{
"name": "dynamic-colors",
"version": "1.1.5",
"description": "Dynamic Colors is a JavaScript library that can dynamically generate color palettes from a single HEX color and it provides a range of useful APIs for creating, managing, and manipulating color palettes.",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"tsc-build": "tsc -p ./tsconfig.json",
"rollup-esm": "rollup -c --environment format:esm",
"rollup-iife": "rollup -c --environment format:iife",
"terser-esm": "terser ./index.js -c -m --toplevel -o ./index.js",
"terser-iife": "terser ./DynamicColors.js -c -m -o ./DynamicColors.js",
"prerelease-build": "npm run tsc-build && npm run rollup-esm && npm run rollup-iife && rm -rf ./lib/",
"build": "npm run tsc-build && npm run rollup-esm && npm run rollup-iife && npm run terser-esm && npm run terser-iife && rm -rf ./lib/",
"test-build": "npm run tsc-build && npm run rollup-esm && tsc ./test/index.ts -t es6 && rollup ./test/index.js -o ./test/out.js && rm -rf ./lib/"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/patelka2211/dynamic-colors.git"
},
"keywords": [
"Dynamic Colors",
"Dynamic Colors from KPVERSE",
"DynamicColors.js",
"KPVERSE",
"Dynamic Colors by KP",
"Developed by KP",
"Kartavya Patel",
"patelka2211",
"Material Theme Builder",
"front-end",
"Dynamic content",
"color palette generation",
"Front-end development",
"UI development",
"Open source"
],
"author": "Kartavya Patel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patelka2211/dynamic-colors/issues"
},
"homepage": "https://kpverse.in/dynamic-colors/",
"devDependencies": {
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"terser": "^5.17.7",
"typescript": "^5.1.3"
}
}