-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "react-width-limiter",
"version": "0.0.0",
"description": "The width limiter component for React.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cyntler/react-width-limiter.git"
},
"keywords": [
"react",
"width",
"limiter",
"max-width",
"renderer",
"overflow"
],
"author": "Damian Cyntler",
"license": "MIT",
"scripts": {
"start": "rimraf dist && tsc --watch",
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/cjs",
"test": "jest",
"test:watch": "jest --watch",
"check-prettier": "prettier --check ./src",
"check-types": "tsc --noEmit",
"release": "release-it",
"prepare": "husky install"
},
"dependencies": {
"@types/react": "^18.2.75",
"@types/styled-components": "^5.1.34",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@testing-library/react": "^14.3.0",
"@types/jest": "^29.5.12",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"peerDependencies": {
"react": ">=16.8"
}
}