forked from heesungjang/use-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "use-todo",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/heesungjang/use-todo"
},
"contributors": [
"Jiho Kim <[email protected]> (https://github.com/jiho3894/)"
],
"keywords": [
"todo",
"todo list",
"react",
"react hook",
"custom hook"
],
"description": "React hook for todo list",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"file": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": "Heesung Jang",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"korean-random-words": "^1.0.3",
"moment": "^2.29.4",
"random-sentence": "^1.0.4",
"uuid": "^8.3.2"
}
}