|
1 | 1 | {
|
2 | 2 | "name": "@tailwindui/react",
|
3 | 3 | "version": "0.0.0-development",
|
| 4 | + "main": "dist/index.js", |
| 5 | + "typings": "dist/index.d.ts", |
| 6 | + "module": "dist/tailwindui.esm.js", |
4 | 7 | "license": "MIT",
|
5 | 8 | "files": [
|
6 | 9 | "dist"
|
|
9 | 12 | "node": ">=10"
|
10 | 13 | },
|
11 | 14 | "scripts": {
|
| 15 | + "start": "tsdx watch", |
| 16 | + "build": "tsdx build --name tailwindui --tsconfig ./tsconfig.tsdx.json", |
| 17 | + "test": "tsdx test --passWithNoTests", |
| 18 | + "playground": "next dev", |
| 19 | + "lint": "tsdx lint", |
| 20 | + "prepare": "npm run build", |
12 | 21 | "commit": "git-cz",
|
13 | 22 | "semantic-release": "semantic-release"
|
14 | 23 | },
|
15 | 24 | "husky": {
|
16 | 25 | "hooks": {
|
| 26 | + "pre-commit": "npm run lint", |
17 | 27 | "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
18 | 28 | }
|
19 | 29 | },
|
|
28 | 38 | "path": "cz-conventional-changelog"
|
29 | 39 | }
|
30 | 40 | },
|
| 41 | + "release": { |
| 42 | + "branches": [ |
| 43 | + "+([0-9])?(.{+([0-9]),x}).x", |
| 44 | + "master", |
| 45 | + { |
| 46 | + "name": "develop", |
| 47 | + "channel": "next" |
| 48 | + } |
| 49 | + ] |
| 50 | + }, |
| 51 | + "peerDependencies": { |
| 52 | + "react": ">=16" |
| 53 | + }, |
31 | 54 | "devDependencies": {
|
32 | 55 | "@commitlint/cli": "^9.1.2",
|
33 | 56 | "@commitlint/config-conventional": "^9.1.2",
|
34 |
| - "commitizen": "^4.1.2", |
| 57 | + "@tailwindcss/ui": "^0.5.0", |
| 58 | + "@testing-library/react": "^10.4.8", |
| 59 | + "@types/node": "^14.6.0", |
| 60 | + "@types/react-dom": "^16.9.8", |
| 61 | + "@types/react": "^16.9.46", |
| 62 | + "babel-jest": "^26.3.0", |
| 63 | + "commitizen": "^4.1.5", |
35 | 64 | "cz-conventional-changelog": "^3.2.0",
|
36 | 65 | "husky": "^4.2.5",
|
37 |
| - "semantic-release": "^17.1.1" |
| 66 | + "next": "9.5.2", |
| 67 | + "react-dom": "^16.13.1", |
| 68 | + "react": "^16.13.1", |
| 69 | + "semantic-release": "^17.1.1", |
| 70 | + "snapshot-diff": "^0.8.1", |
| 71 | + "tailwindcss": "^1.7.3", |
| 72 | + "tsdx": "^0.13.3", |
| 73 | + "tslib": "^2.0.1", |
| 74 | + "typescript": "^3.9.7" |
38 | 75 | }
|
39 | 76 | }
|
0 commit comments