-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "color-name-api",
"version": "0.51.0",
"description": "Rest API that returns a bunch of color names for a given color-value",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node test/test.js",
"start": "node src/server.js",
"apidocs": "openapi-generator-cli generate -i color-names-v1-OpenAPI.yml -g html2 -o ./docs/",
"openapitypes": "openapi --input ./color-names-v1-OpenAPI.yml --output ./generated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meodai/color-name-api.git"
},
"keywords": [
"color",
"palette",
"naming",
"colors",
"colour",
"colours",
"rest",
"api",
"node"
],
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.0"
},
"bugs": {
"url": "https://github.com/meodai/color-name-api/issues"
},
"homepage": "https://github.com/meodai/color-name-api#readme",
"dependencies": {
"@supabase/supabase-js": "^2.47.10",
"color-name-list": "^11.2.0",
"color-name-lists": "^3.27.0",
"culori": "^4.0.1",
"dotenv": "^16.4.7",
"request-ip": "^3.3.0",
"seedrandom": "^3.0.5",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.15.3",
"eslint": "^9.17.0",
"openapi-typescript-codegen": "^0.29.0"
}
}