-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "thank-you-tweet-button-002",
"version": "3.0.2",
"description": "Easy-to-use tweet button for saying thank you to @oluwatobiss.",
"homepage": "https://github.com/codesweetly/thank-you-tweet-button-002#readme",
"main": "./dist/cjs/TweetButton.js",
"module": "./dist/esm/TweetButton.js",
"types": "./dist/esm/TweetButton.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/codesweetly/thank-you-tweet-button-002.git"
},
"bugs": {
"url": "https://github.com/codesweetly/thank-you-tweet-button-002/issues",
"email": "[email protected]"
},
"scripts": {
"release": "dotenv release-it --",
"build": "rm -r dist && npm run build:esm && npm run build:cjs && npm run copy-files",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"copy-files": "cp ./src/index.css dist/",
"test": "jest --config jest.config.ts"
},
"files": [
"./dist"
],
"keywords": [
"tweet",
"twitter",
"button",
"thank you",
"thanks"
],
"author": "Oluwatobi Sofela <[email protected]> (https://www.codesweetly.com)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@release-it/conventional-changelog": "^8.0.1",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.47",
"dotenv-cli": "^7.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"react": "^18.2.0",
"release-it": "^17.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.2.0"
}
}