-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 KB
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
{
"name": "thank-you-tweet-button-004",
"version": "0.0.0-development",
"homepage": "https://github.com/codesweetly/thank-you-tweet-button-004#readme",
"repository": {
"type": "git",
"url": "https://github.com/codesweetly/thank-you-tweet-button-004.git"
},
"bugs": {
"url": "https://github.com/codesweetly/thank-you-tweet-button-004/issues",
"email": "contact@codesweetly.com"
},
"description": "Easy-to-use tweet button for saying thank you to @oluwatobiss.",
"main": "./dist/cjs/tweetButton.js",
"module": "./dist/esm/tweetButton.js",
"types": "./dist/esm/tweetButton.d.ts",
"exports": {
".": {
"require": "./dist/cjs/tweetButton.js",
"import": "./dist/esm/tweetButton.js",
"types": "./dist/esm/tweetButton.d.ts"
}
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && node scripts/create-package-json.js --esm",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/create-package-json.js --cjs",
"test": "jest --config jest.config.cjs",
"prepare": "husky"
},
"files": [
"dist/"
],
"keywords": [
"tweet",
"twitter",
"button",
"thank you",
"thanks"
],
"author": "Oluwatobi Sofela <contact@codesweetly.com> (https://www.codesweetly.com)",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}