|
1 | 1 | { |
2 | 2 | "name": "tailwindcss-palette-generator", |
3 | | - "version": "0.7.0", |
| 3 | + "version": "0.10.0", |
4 | 4 | "license": "MIT", |
5 | 5 | "directories": { |
6 | 6 | "lib": "dist/main.js", |
|
13 | 13 | "main": "./dist/main.js", |
14 | 14 | "module": "./dist/main.mjs", |
15 | 15 | "types": "./dist/main.d.ts", |
16 | | - "files": ["dist", "src"], |
| 16 | + "files": ["dist"], |
17 | 17 | "scripts": { |
18 | | - "build": "rimraf dist/ && cross-env NODE_ENV=production tsup src/main.ts", |
| 18 | + "build": "npm run clean && tsup src/main.ts", |
19 | 19 | "dev": "tsup --watch", |
20 | 20 | "test": "jest", |
21 | 21 | "prepublish": "npm run test && npm run build", |
22 | 22 | "postversion": "npm publish --access public", |
23 | | - "check": "npx @biomejs/biome check .", |
24 | | - "check:fix": "npx @biomejs/biome check --write ." |
| 23 | + "clean": "rimraf dist/", |
| 24 | + "check": "biome check .", |
| 25 | + "check:fix": "biome check --write .", |
| 26 | + "format": "biome format --write .", |
| 27 | + "lint": "biome lint --write ." |
25 | 28 | }, |
26 | 29 | "engines": { |
27 | 30 | "node": ">=18" |
|
38 | 41 | "author": "@ibodev1 <github.com/ibodev1>", |
39 | 42 | "description": "Color palette generation library for TailwindCSS.", |
40 | 43 | "dependencies": { |
41 | | - "chroma-js": "^2.4.2" |
| 44 | + "chroma-js": "^3.1.2" |
42 | 45 | }, |
43 | 46 | "peerDependencies": { |
44 | 47 | "tailwindcss": ">=3.4.0 || insiders" |
45 | 48 | }, |
46 | 49 | "devDependencies": { |
47 | | - "@biomejs/biome": "^1.8.3", |
| 50 | + "@biomejs/biome": "^1.9.4", |
| 51 | + "@swc/core": "^1.9.2", |
48 | 52 | "@types/chroma-js": "^2.4.4", |
49 | | - "@types/jest": "^29.5.12", |
50 | | - "@types/node": "^22.0.0", |
| 53 | + "@types/jest": "^29.5.14", |
| 54 | + "@types/node": "^22.9.0", |
51 | 55 | "babel-jest": "^29.7.0", |
52 | | - "cross-env": "^7.0.3", |
53 | 56 | "jest": "29.7.0", |
54 | 57 | "rimraf": "^6.0.1", |
55 | | - "ts-jest": "^29.2.3", |
| 58 | + "ts-jest": "^29.2.5", |
56 | 59 | "ts-node": "^10.9.2", |
57 | | - "tsup": "^8.2.3", |
58 | | - "typescript": "^5.5.4" |
| 60 | + "tsup": "^8.3.5", |
| 61 | + "typescript": "^5.6.3" |
59 | 62 | }, |
60 | | - "packageManager": "pnpm@9.6.0" |
| 63 | + "packageManager": "pnpm@9.13.2" |
61 | 64 | } |
0 commit comments