-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "@stacks/connect-react",
"version": "22.6.1",
"license": "MIT",
"scripts": {
"build": "concurrently 'tsup src/index.ts' 'npm run types'",
"prepublishOnly": "npm run build",
"typecheck": "tsc --project tsconfig.json --noEmit",
"types": "tsc --project tsconfig.json --emitDeclarationOnly"
},
"dependencies": {
"@stacks/connect": "7.10.0",
"jsontokens": "^4.0.1"
},
"devDependencies": {
"@types/react-dom": "^18.3.1",
"@types/styled-components": "^5.1.34",
"bundlesize": "^0.18.2"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"typings": "dist/types/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"umd:main": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"bundlesize": [
{
"path": "./dist/**/*.js",
"maxSize": "9 kB"
}
],
"peerDependencies": {
"react": "^16.x || 17.x || 18.x",
"react-dom": "^16.x || 17.x || 18.x"
}
}