-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "mint-react",
"version": "0.1.1",
"description": "React components to format and display dates in JSX with ease.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rimraf dist",
"build": "pnpm run plop && tsup",
"plop": "cross-env NODE_OPTIONS='--import tsx' plop --plopfile=./plopfile.ts",
"prettier:mintMethods": "prettier --write ./src/constants/mintMethods.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"handlebars": "^4.7.8",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsafe": "^1.8.4",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19 || ^19.0.0-rc"
},
"author": "Vinicius Klöppel",
"repository": {
"type": "git",
"url": "https://github.com/viniciuskloppel/mint-react"
},
"keywords": [
"react",
"date",
"typescript"
]
}