-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 839 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 839 Bytes
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
{
"name": "parse-paste",
"version": "1.0.1",
"type": "module",
"description": "parse clipboard data when trigger paste event",
"keywords": [
"paste",
"react",
"clipboard",
"typescript",
"parse"
],
"repository": "https://github.com/SteveSuv/parse-paste",
"author": "SteveSuv",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"build:pkg": "tsup",
"publish:pkg": "node publish.cjs",
"format": "prettier -w ."
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"tsup": "^8.0.1"
}
}