-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "fettepalette",
"version": "3.3.0",
"description": "Color ramp generator using curves within the HSV color model",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.min.mjs",
"browser": "./dist/index.min.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && tsc --build && node ./build.js",
"test": "npm run lint && echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts && npx prettier --check ./src/",
"prettier": "npx prettier --write ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meodai/fettepalette.git"
},
"keywords": [
"color",
"generative-art",
"colour",
"palette-generation",
"generative"
],
"author": "David Aerne @meodai",
"license": "MIT",
"bugs": {
"url": "https://github.com/meodai/fettepalette/issues"
},
"homepage": "https://github.com/meodai/fettepalette#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"esbuild": "^0.12.29",
"eslint": "^7.32.0",
"prettier": "2.4.1",
"typescript": "^4.4.3"
}
}