-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
67
68
69
70
71
72
{
"name": "@tonicpow/widget-react",
"version": "0.0.7",
"description": "Official react component for rendering TonicPow Widgets and Share buttons",
"author": {
"name": "TonicPow",
"email": "[email protected]",
"url": "https://docs.tonicpow.com"
},
"contributors": [
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"bugs": {
"url": "https://github.com/tonicpow/widget-react/issues"
},
"homepage": "https://docs.tonicpow.com",
"scripts": {
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build-storybook": "build-storybook",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --pretty",
"clean": "rimraf dist",
"deploy": "npm publish --access public",
"storybook": "yarn build && start-storybook -p 6006",
"test": "echo 'Implement Tests!'"
},
"license": "Open BSV",
"repository": {
"type": "git",
"url": "https://github.com/tonicpow/widget-react/"
},
"keywords": [
"tonic",
"widget",
"react",
"bitcoin",
"bsv"
],
"engines": {
"node": "*"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"devDependencies": {
"@storybook/addon-actions": "^8.0.2",
"@storybook/addon-essentials": "^8.0.2",
"@storybook/addon-links": "^8.0.1",
"@storybook/react": "^8.0.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@tonicpow/widget": "^0.0.18"
}
}