-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
{
"author": "Snowcoders",
"description": "React storage helpers that provide structure around useSyncExternalStore or React Context.",
"devDependencies": {
"@release-it/keep-a-changelog": "5.0.0",
"@snowcoders/renovate-config": "3.0.0-beta.17",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "15.0.2",
"@testing-library/user-event": "14.5.2",
"@types/react": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"changelog-updater": "2.0.3",
"concurrently": "9.1.0",
"cpy-cli": "5.0.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"release-it": "17.11.0",
"rimraf": "6.0.1",
"sortier": "2.0.2",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.5.2"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist-cjs/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/snowcoders/react-context-store",
"keywords": [
"react",
"useSyncExternalStore",
"SyncExternalStore",
"context",
"store"
],
"license": "MIT",
"main": "./dist-cjs/index.js",
"name": "react-context-store",
"peerDependencies": {
"react": ">=16.0.0"
},
"repository": "github:snowcoders/react-context-store",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build:cjs": "tsc -p tsconfig.cjs.json && cpy ./src/cjs-package.json.txt ./dist-cjs --flat --rename=package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf coverage dist dist-cjs",
"husky:commit-msg": "echo 'No commit message hook'",
"husky:pre-commit": "npx --no lint-staged",
"husky:pre-push": "npm test",
"prepare": "npm run clean && npm run build && npx --no husky install",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"version": "changelog-updater && git add ."
},
"sideEffects": false,
"type": "module",
"version": "1.2.0-beta.1"
}