-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
{
"name": "veact-use",
"version": "0.1.0",
"author": "Surmon",
"license": "MIT",
"description": "Collection of Veact Hooks",
"keywords": [
"React mutable state lib",
"React vue state",
"React composition API",
"Veact Hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/veactjs/veact-use.git"
},
"files": [
"lib/",
"es/"
],
"sideEffects": false,
"main": "lib/index.js",
"module": "esm/index.js",
"browser": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts src",
"format": "npm run lint --fix",
"test": "jest",
"build:lib": "rimraf lib && tsc",
"build:es": "rimraf es && tsc -m esNext --outDir es",
"build": "npm run build:lib && npm run build:es",
"rebirth": "npm run lint && npm run test && npm run build",
"release": ". ./scripts/release.sh"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"veact": "^0.1"
},
"devDependencies": {
"@surmon-china/libundler": "^1.0.2",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5",
"veact": "^0.1.2"
}
}