-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.74 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "2n8",
"version": "0.10.2",
"description": "Simple state management.",
"keywords": [
"react",
"reactjs",
"state",
"store",
"state management",
"2n8"
],
"homepage": "https://2n8.wstone.uk/",
"repository": {
"type": "git",
"url": "git+https://github.com/will-stone/2n8.git"
},
"license": "ISC",
"author": "Will Stone",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"./dist"
],
"scripts": {
"bench": "vitest bench",
"build": "vite build",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"release": "release-it",
"test": "vitest --typecheck",
"website:build": "astro build",
"website:dev": "astro dev",
"website:preview": "astro preview"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{css,json,md,js,ts}": [
"prettier --write"
]
},
"prettier": "@will-stone/prettier-config",
"dependencies": {
"auto-bind": "^5.0.1",
"fast-equals": "^5.2.2",
"rfdc": "^1.4.1"
},
"devDependencies": {
"@astrojs/react": "^4.2.0",
"@astrojs/starlight": "^0.32.1",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^6.0.0",
"@commits-with-character/conventional-changelog-preset": "^2.0.0",
"@expressive-code/plugin-line-numbers": "^0.40.2",
"@release-it/conventional-changelog": "^10.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@will-stone/eslint-config": "^12.1.0",
"@will-stone/prettier-config": "^9.0.1",
"astro": "^5.3.0",
"eslint": "^9.21.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"mobx": "^6.13.6",
"mobx-react-lite": "^4.1.0",
"prettier": "^3.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-external-links": "^3.0.0",
"release-it": "^18.1.2",
"sharp": "^0.33.5",
"simple-git-hooks": "^2.11.1",
"starlight-package-managers": "^0.10.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.1.1",
"vite-plugin-dts": "^4.4.0",
"vitest": "^3.0.6",
"vitest-fail-on-console": "^0.7.1",
"zustand": "^5.0.2"
},
"peerDependencies": {
"react": "^18.3.1 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"overrides": {
"eslint": "$eslint"
}
}