-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "@hirohe/react-watermark",
"version": "0.5.0",
"description": "A React Component to wrap watermark text on child component, using generated svg as background-image",
"keywords": [
"watermark",
"water mark",
"react",
"react component",
"svg",
"水印"
],
"repository": "https://github.com/hirohe/react-watermark",
"main": "./build/index.js",
"module": "./build/index.esm.js",
"types": "./build/index.d.ts",
"files": [
"build",
"src"
],
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "tsc --emitDeclarationOnly && rollup -c"
},
"author": "hirohe",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-controls": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/react": "^6.5.12",
"@types/react": "^18.0.21",
"prettier": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.8.4"
}
}