-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "slots-component",
"scripts": {
"release": "release-it",
"build": "tsc",
"test": "ts-node --typeCheck index.test.tsx"
},
"devDependencies": {
"@type-challenges/utils": "^0.1.1",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"auto-changelog": "^2.4.0",
"release-it": "^17.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Abdolah Keshtkar",
"license": "MIT",
"release-it": {
"git": {
"requireBranch": "main",
"commitMessage": "chore: release v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
},
"hooks": {
"before:init": [
"git pull",
"npm test"
],
"after:bump": "npx auto-changelog -p"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"peerDependencies": {
"react": ">=16.18.0",
"react-dom": ">=16.18.0"
}
}