@basiclines/rampa-sdk 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +333 -0
  2. package/dist/index.js +7908 -0
  3. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@basiclines/rampa-sdk",
3
+ "version": "1.4.0",
4
+ "description": "Programmatic JavaScript SDK for generating color palettes with rampa",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "bun build ./src/index.ts --outfile=./dist/index.js --target=node",
13
+ "test": "bun test"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/basiclines/rampa-studio"
18
+ },
19
+ "keywords": [
20
+ "color",
21
+ "palette",
22
+ "sdk",
23
+ "design",
24
+ "oklch",
25
+ "accessibility"
26
+ ],
27
+ "author": "ismael.fyi",
28
+ "license": "SEE LICENSE IN LICENSE.md",
29
+ "dependencies": {
30
+ "chroma-js": "^3.1.2",
31
+ "culori": "^4.0.1"
32
+ },
33
+ "devDependencies": {
34
+ "@types/bun": "^1.2.17",
35
+ "@types/chroma-js": "^3.1.1",
36
+ "typescript": "^5.5.3"
37
+ }
38
+ }