-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "region-core",
"version": "11.11.3-alpha.0",
"description": "region-core",
"keywords": [
"react",
"region",
"region-core"
],
"repository": "github:regionjs/region-core",
"license": "MIT",
"author": "Cong Zhang <[email protected]>",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": false,
"directories": {
"example": "example"
},
"files": [
"lib",
"es"
],
"scripts": {
"build": "rm -rf lib/ && tsc",
"build-es": "rm -rf es/ && tsc --project tsconfig.es.json",
"lint": "skr lint",
"test": "skr test -- --coverage",
"prepublishOnly": "yarn build && yarn build-es"
},
"peerDependencies": {
"react": ">=18"
},
"dependencies": {
"json-stable-stringify": "^1.1.0"
},
"devDependencies": {
"@reskript/cli": "^5.7.4",
"@reskript/cli-lint": "^5.7.4",
"@reskript/cli-test": "^5.7.4",
"@reskript/config-jest": "^5.7.4",
"@reskript/config-lint": "^5.7.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.10",
"@types/json-stable-stringify": "^1.0.36",
"@types/react": "^18.2.42",
"@types/react-test-renderer": "^18.0.7",
"core-js": "^3.33.3",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.11.0",
"typescript": "^5.2.2"
}
}