forked from hirosystems/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "@stacks/connect-react",
"version": "13.0.0",
"scripts": {
"build": "concurrently 'yarn build:modules' 'yarn types'",
"build:modules": "tsdx build --format cjs,esm,umd",
"types": "tsc --project tsconfig.json --emitDeclarationOnly",
"dev": "cd ../test-app && yarn start",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\" *.js",
"prepublishOnly": "yarn build",
"start": "tsdx watch",
"test": "tsdx test",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"prettier": "@stacks/prettier-config",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"typings": "dist/types/index.d.ts",
"bundlesize": [
{
"path": "./dist/**/*.js",
"maxSize": "9 kB"
}
],
"dependencies": {
"@stacks/auth": "2.0.1",
"@stacks/connect": "6.2.0",
"jsontokens": "^3.0.0"
},
"devDependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.21",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.1.9",
"bundlesize": "^0.18.1",
"concurrently": "^6.0.0",
"esbuild": "^0.9.3",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"rollup": "^2.41.4",
"rollup-plugin-esbuild": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.1.0"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/connect-react.esm.js",
"peerDependencies": {
"@stacks/connect": "^6.2.0",
"react": "^16.x || 17.x",
"react-dom": "^16.x || 17.x"
}
}