-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "react-global-states",
"version": "5.0.0",
"description": "Simple global state store",
"author": "Munawwar",
"license": "MIT",
"repository": "https://github.com/Munawwar/react-global-states",
"type": "module",
"module": "dist/index.js",
"main": "dist/cjs/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "rm -fr dist/ && rm -fr dist-test/ && tsc && tsc -p tsconfig.cjs.json && tsc -p tsconfig.test.json",
"test": "ava dist-test/*.test.js",
"test:watch": "concurrently \"tsc -p tsconfig.test.json --watch\" \"ava --watch dist-test/*.test.js\""
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"ava": "^6.4.1",
"concurrently": "^8.2.2",
"happy-dom": "^20.0.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^21.0.0",
"typescript": "^5.9.3"
}
}