-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) 路 3.02 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) 路 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "muya-monorepo",
"version": "0.0.0",
"author": "samuel.gjabel@gmail.com",
"repository": "https://github.com/samuelgjabel/muya",
"devDependencies": {
"@eslint-react/eslint-plugin": "2.8.1",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@happy-dom/global-registrator": "20.4.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@stylistic/eslint-plugin-jsx": "^4.4.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "8.0.1",
"@types/bun": "^1.3.8",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/react": "~19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-test-renderer": "19.1.0",
"@types/use-sync-external-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"babel-plugin-react-compiler": "^1.0.0",
"bun-types": "1.3.8",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-plugin-depend": "^1.4.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-jsdoc": "^62.5.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-sonarjs": "3.0.6",
"eslint-plugin-unicorn": "62.0.0",
"jest": "^30.2.0",
"jotai": "^2.17.0",
"prettier": "3.8.1",
"react": "19.2",
"react-dom": "19.2",
"react-test-renderer": "19.2.4",
"reactotron-react-js": "^3.3.17",
"reactotron-react-native": "^5.1.18",
"redux-devtools-extension": "^2.13.9",
"typescript": "5.9.3",
"typescript-eslint": "^8.54.0",
"use-sync-external-store": "^1.6.0",
"zustand": "^5.0.10"
},
"description": "馃憖 Another React state management library",
"homepage": "https://github.com/samuelgjabel/muya",
"keywords": [
"react",
"react-hooks",
"react-native",
"state",
"management",
"library",
"muya",
"redux",
"zustand"
],
"license": "MIT",
"private": true,
"scripts": {
"clean": "sudo rm -rf node_modules && sudo rm -rf packages/*/node_modules && bun install",
"build": "bun run --cwd packages/core build && bun run --cwd packages/sqlite build",
"code-check": "bun run typecheck && bun run lint && bun run test && bun run format",
"typecheck": "tsc --noEmit",
"lint": "bun eslint \"packages/core/src/**/*.{ts,tsx}\" \"packages/core/__tests__/**/*.{ts,tsx}\" \"packages/sqlite/src/**/*.{ts,tsx}\" \"packages/sqlite/__tests__/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"./**/*.{js,jsx,json,ts,tsx}\"",
"test": "bun test ./packages/**",
"pub": "bun run code-check && bun run build && cd lib && npm publish",
"pub:muya": "bun run code-check && bun run --cwd packages/core build && cd packages/core && npm publish",
"pub:muya_sqlite": "bun run code-check && bun run --cwd packages/sqlite build && cd packages/sqlite && npm publish"
},
"workspaces": [
"packages/*"
]
}