-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.35 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
{
"name": "react-tivity",
"version": "1.0.1",
"description": "State solution for React",
"main": "./dist/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/",
"README.md",
"package.json",
"LICENSE"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/esm/index.mjs",
"module": "./dist/esm/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"cleanup": "rimraf dist",
"build": "rollup -c ./scripts/rollup.config.js",
"format": "prettier {src,scripts}/**/*.{js,ts,tsx} --write",
"format:check": "prettier --check {src,tests,scripts}/**/*.{js,tsx}",
"lint": "eslint src/**/*.{js,ts}",
"test": "jest --silent"
},
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.0.1",
"@types/react": "^18.0.21",
"@types/use-sync-external-store": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "^29.2.0",
"eslint": "^8.23.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"keywords": [
"state",
"manager",
"react",
"react state manager",
"react state management",
"react-tivity"
],
"homepage": "https://github.com/dev-afzalansari/react-tivity",
"bugs": {
"url": "https://github.com/dev-afzalansari/react-tivity/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dev-afzalansari/react-tivity.git"
}
}