Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
charkour committed Dec 16, 2022
1 parent 472f2fb commit db995fb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
{
"name": "spritz",
"version": "0.0.1",
"description": "initalize zustand stores with react context",
"main": "index.js",
"name": "zustand-di",
"version": "0.0.2",
"description": "initialize zustand stores with react context",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"dev": "vitest --watch"
},
"keywords": [
"zustand",
"react",
"context",
"dependency-injection"
],
"author": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Charles Kornoelje",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"zustand": "^4.1.5"
},
"devDependencies": {
"@types/react": "^18.0.26",
"react": "^18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"zustand": "^4.1.5"
}
}
8 changes: 8 additions & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineConfig } from 'tsup';

export default defineConfig({
entry: ['src/index.tsx'],
sourcemap: true,
clean: true,
dts: true,
});

0 comments on commit db995fb

Please sign in to comment.