-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.59 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
{
"name": "@aboutbits/react-ui-integrations",
"version": "1.2.0",
"description": "Webpack and Tailwind integration for ReactUI",
"homepage": "https://github.com/aboutbits/react-ui-integrations#readme",
"bugs": {
"url": "https://github.com/aboutbits/react-ui-integrations/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-ui-integrations"
},
"keywords": [
"react-ui",
"webpack",
"tailwind"
],
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"prettier": "@aboutbits/prettier-config",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"readme.md",
"dist/**/*"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"scripts": {
"build": "rimraf dist && npm run build:types && npm run build:esm && npm run build:cjs",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "jest --verbose --passWithNoTests",
"checks": "npm run typecheck && npm run lint && npm run test",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"version": "npm run test && npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"lodash.mergewith": "^4.6.2",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@aboutbits/eslint-config": "^2.2.4",
"@aboutbits/prettier-config": "^1.6.1",
"@aboutbits/react-ui": "^2.0.3",
"@aboutbits/ts-config": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/lodash.mergewith": "^4.6.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"next": "^14.1.4",
"prettier": "^3.2.5",
"react": "^18.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@aboutbits/react-ui": "~0.1.0 || ~0.2.0 || ~0.3.0 || ^1.0.0 || ^2.0.0",
"next": "^12 || ^13 || ^14",
"react": "^17.0.2 || ^18",
"tailwindcss": "^3.1",
"webpack": "^5"
}
}