-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-package-starter",
"version": "1.0.0",
"description": "A starter template for creating React packages.",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run --coverage",
"lint": "eslint --ignore-pattern .gitignore \"{src,tests}/**/*.+(ts|js|tsx|jsx)\"",
"lint:fix": "pnpm lint --fix && prettier --write .",
"commit": "cz",
"dev": "concurrently \"pnpm build --watch\" \"pnpm test\"",
"build": "tsup",
"link:self": "pnpm link",
"link:remove": "pnpm unlink",
"release": "pnpm build && pnpm release-it"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"keywords": [
"react",
"react-package",
"npm-package",
"typescript",
"react-ts",
"react-typescript"
],
"author": {
"email": "[email protected]",
"name": "Duong Duc Trong",
"url": "https://github.com/duongductrong"
},
"license": "MIT",
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"devDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^18.1.2",
"tsup": "^8.3.5",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.1",
"@types/react-test-renderer": "^18.3.1",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"@vitest/coverage-v8": "^3.0.4",
"concurrently": "^9.1.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unused-imports": "3.2.0",
"jsdom": "^26.0.0",
"prettier": "3.4.2",
"react-test-renderer": "^18.3.1",
"tsconfig-paths": "4.2.0",
"tsx": "4.19.2",
"vitest": "^3.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/duongductrong/react-package-starter.git"
},
"engines": {
"node": ">=18.0.0"
}
}