-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1309c5f
commit b8ab6a3
Showing
7 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
{ | ||
"name": "radix-colors-tailwind", | ||
"version": "1.0.1", | ||
"main": "dist/index.ts", | ||
"version": "1.0.5", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*", | ||
"!**/*.tsbuildinfo", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"repository": "https://github.com/lilingxi01/radix-colors-tailwind", | ||
"scripts": { | ||
"prod": "bun clean && bun generate && bun prod:tsc", | ||
"prod:tsc": "tsc --project tsconfig.prod.json", | ||
"generate": "bun src/scripts/generator.ts", | ||
"lint": "eslint src/scripts/*", | ||
"prod": "bun clean && bun prod:tsc && bun generate", | ||
"prod:tsc": "tsup src", | ||
"generate": "bun scripts/generator.ts", | ||
"lint": "eslint scripts/*", | ||
"clean": "rm -f -R tsconfig.tsbuildinfo dist" | ||
}, | ||
"devDependencies": { | ||
"@taci-tech/eslint-config": "^0.0.3", | ||
"@radix-ui/colors": "^3.0.0", | ||
"@taci-tech/eslint-config": "^0.0.3", | ||
"@typescript-eslint/eslint-plugin": "^5.48.1", | ||
"@typescript-eslint/parser": "^5.48.1", | ||
"eslint": "^8.32.0", | ||
"bun-types": "latest", | ||
"eslint": "^8.32.0", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.0.0" | ||
}, | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"exports": { | ||
".": "./dist" | ||
} | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { defineConfig } from 'tsup'; | ||
|
||
export default defineConfig({ | ||
sourcemap: false, | ||
minify: true, | ||
dts: true, | ||
format: ['esm', 'cjs'], | ||
clean: true, | ||
}); |