-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "@fleur/react",
"version": "5.0.2",
"repository": "https://github.com/fleur-js/fleur/tree/master/packages/react",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "ragg<[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"clean-dist": "rm -rf ./dist",
"build:declarations": "tsc --emitDeclarationOnly --declaration --outDir ./dist",
"build:react-native": "tsc --module CommonJS",
"build:esm": "bili",
"build": "yarn build:declarations && yarn build:react-native && yarn build:esm",
"prepublishOnly": "yarn clean-dist && yarn build"
},
"peerDependencies": {
"@fleur/fleur": "3.x.x",
"react": ">= 16.8.x",
"react-dom": ">= 16.8.x"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.0.3",
"@types/cheerio": "0.22.23",
"@types/express": "4.17.11",
"@types/react": "16.9.53",
"@types/react-test-renderer": "17.0.1",
"@types/request-promise": "4.1.47",
"cheerio": "1.0.0-rc.5",
"express": "4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "17.0.1",
"request-promise": "4.2.6",
"rollup-plugin-typescript2": "0.31.1",
"tslib": "2.1.0"
},
"sideEffects": false
}