-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "chroma-harmony",
"version": "0.1.0",
"description": "A minimal Color Harmony library built on top of [Chroma.js](https://www.npmjs.com/package/chroma-js)",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beilinson/chroma-harmony.js.git"
},
"keywords": [
"chroma",
"color",
"harmony",
"theory",
"palette"
],
"author": "Adam Beili <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beilinson/chroma-harmony.js/issues"
},
"homepage": "https://github.com/Beilinson/chroma-harmony.js#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"rimraf": "^5.0.0",
"rollup": "^3.21.0",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@types/chroma-js": "^2.4.0",
"chroma-js": "^2.4.2"
}
}