@rkrupinski/stan 1.0.0-rc2

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 (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +56 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Stan
2
+
3
+ [![CI](https://github.com/rkrupinski/stan/actions/workflows/ci.yml/badge.svg)](https://github.com/rkrupinski/stan/actions/workflows/ci.yml)
4
+
5
+ Minimalistic state management
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@rkrupinski/stan",
3
+ "description": "Minimalistic state management",
4
+ "version": "1.0.0-rc2",
5
+ "exports": {
6
+ ".": "./dist/index.js",
7
+ "./react": "./dist/react.js"
8
+ },
9
+ "scripts": {
10
+ "typecheck": "tsc",
11
+ "lint": "eslint --max-warnings=0",
12
+ "test": "jest",
13
+ "build": "rm -rf dist && rollup --config",
14
+ "prepublishOnly": "yarn typecheck && yarn lint && yarn test && yarn build"
15
+ },
16
+ "dependencies": {
17
+ "fast-json-stable-stringify": "2.1.0"
18
+ },
19
+ "devDependencies": {
20
+ "@eslint/js": "^9.23.0",
21
+ "@rkrupinski/prettierconfig": "1.0.1",
22
+ "@rollup/plugin-commonjs": "28.0.3",
23
+ "@rollup/plugin-node-resolve": "16.0.1",
24
+ "@rollup/plugin-terser": "0.4.4",
25
+ "@rollup/plugin-typescript": "12.1.2",
26
+ "@testing-library/dom": "10.4.0",
27
+ "@testing-library/react": "16.2.0",
28
+ "@types/jest": "29.5.14",
29
+ "@types/react": "^18.2.0",
30
+ "@types/react-dom": "^18.2.0",
31
+ "eslint": "^9.23.0",
32
+ "eslint-plugin-react": "^7.37.4",
33
+ "globals": "^16.0.0",
34
+ "jest": "29.7.0",
35
+ "jest-environment-jsdom": "29.7.0",
36
+ "react": "^18.2.0",
37
+ "react-dom": "^18.2.0",
38
+ "rollup": "4.37.0",
39
+ "ts-jest": "29.3.0",
40
+ "tslib": "2.8.1",
41
+ "typescript": "5.8.2",
42
+ "typescript-eslint": "^8.28.0"
43
+ },
44
+ "peerDependencies": {
45
+ "react": ">=18.0.0",
46
+ "react-dom": ">=18.0.0"
47
+ },
48
+ "author": "Rafał Krupiński <rkrupinski.npm@gmail.com> (https://github.com/rkrupinski)",
49
+ "homepage": "https://github.com/rkrupinski/stan#readme",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/rkrupinski/stan.git"
53
+ },
54
+ "license": "MIT",
55
+ "prettier": "@rkrupinski/prettierconfig"
56
+ }