-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 859 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
{
"name": "react-tidycal",
"version": "0.1.2",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"private": false,
"author": "Tekena Solomon (tekipeps)",
"repository": {
"type": "git",
"url": "git+https://github.com/Tekipeps/react-tidycal.git"
},
"peerDependencies": {
"react": ">=16"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"typescript",
"TidyCal"
],
"license": "MIT",
"dependencies": {},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "yarn build"
},
"devDependencies": {
"@types/react": "^18.0.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2"
}
}