Skip to content

Commit

Permalink
Init 0.0.1 Preview #III
Browse files Browse the repository at this point in the history
  • Loading branch information
benemmaofficial committed Oct 7, 2024
1 parent 9f6b5c8 commit 1921bf1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
28 changes: 12 additions & 16 deletions packages/core/kit/button/package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,27 @@
{
"name": "@inspatial/kit-button",
"version": "0.0.0",
"sideEffects": false,
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"sideEffects": false,
"license": "Apache-2.0",
"files": ["dist/**"],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
"build": "tsup src/index.ts --format cjs,esm --dts --external react",
"dev": "tsup src/index.ts --format cjs,esm --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@inspatial/eslint-config": "workspace:*",
"@inspatial/tsconfig": "workspace:*",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"tsup": "^8.3.0",
"typescript": "^5.3.3"
},
"dependencies": {
"react": "^18.2.0"
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^8.40.0",
"eslint-config-inspatial": "workspace:*",
"react": "^18.2.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/kit/button/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "./button";
export { Button } from './button';

0 comments on commit 1921bf1

Please sign in to comment.