|
38 | 38 | "preferGlobal": false, |
39 | 39 | "sideEffects": false, |
40 | 40 | "files": [ |
41 | | - "src", |
42 | | - "bin" |
| 41 | + "bin", |
| 42 | + "src" |
43 | 43 | ], |
44 | 44 | "packageManager": "pnpm@8.15.1", |
45 | 45 | "scripts": { |
46 | | - "cipublish": "node ./bin/config.js publish --cwd .", |
47 | | - "cipublishforce": "CI=true pnpm cipublish", |
48 | | - "prettier": "prettier --ignore-unknown '**/*'", |
49 | | - "prettier:write": "pnpm run prettier --write", |
| 46 | + "preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm", |
| 47 | + "test": "pnpm run test:ci", |
| 48 | + "test:pr": "nx run-many --targets=test:format,test:eslint,test:types,test:build", |
| 49 | + "test:ci": "nx run-many --targets=test:format,test:eslint,test:types,test:build", |
50 | 50 | "test:build": "publint --strict", |
51 | 51 | "test:types": "tsc", |
52 | 52 | "test:eslint": "eslint --ext .js,.ts,.tsx ./bin ./src", |
53 | 53 | "test:format": "pnpm run prettier --check", |
54 | | - "test:pr": "nx run-many --targets=test:format,test:eslint,test:types,test:build", |
55 | | - "test:ci": "nx run-many --targets=test:format,test:eslint,test:types,test:build" |
| 54 | + "prettier": "prettier --ignore-unknown '**/*'", |
| 55 | + "prettier:write": "pnpm run prettier --write", |
| 56 | + "cipublish": "node ./bin/config.js publish --cwd .", |
| 57 | + "cipublishforce": "CI=true pnpm cipublish" |
56 | 58 | }, |
57 | 59 | "nx": { |
58 | 60 | "includedScripts": [ |
|
63 | 65 | ] |
64 | 66 | }, |
65 | 67 | "dependencies": { |
66 | | - "@commitlint/parse": "^18.4.4", |
| 68 | + "@commitlint/parse": "^18.6.1", |
67 | 69 | "chalk": "^5.3.0", |
68 | | - "commander": "^11.1.0", |
| 70 | + "commander": "^12.0.0", |
69 | 71 | "current-git-branch": "^1.1.0", |
70 | 72 | "esbuild-register": "^3.5.0", |
71 | 73 | "git-log-parser": "^1.2.0", |
|
74 | 76 | "liftoff": "^4.0.0", |
75 | 77 | "luxon": "^3.4.4", |
76 | 78 | "minimist": "^1.2.8", |
77 | | - "rollup-plugin-preserve-directives": "^0.3.1", |
78 | | - "semver": "^7.5.4", |
| 79 | + "rollup-plugin-preserve-directives": "^0.4.0", |
| 80 | + "semver": "^7.6.0", |
79 | 81 | "stream-to-array": "^2.3.0", |
80 | 82 | "v8flags": "^4.0.1", |
81 | | - "vite-plugin-dts": "^3.7.1", |
| 83 | + "vite-plugin-dts": "^3.7.2", |
82 | 84 | "vite-plugin-externalize-deps": "^0.8.0" |
83 | 85 | }, |
84 | 86 | "devDependencies": { |
85 | | - "@arethetypeswrong/cli": "^0.13.6", |
| 87 | + "@arethetypeswrong/cli": "^0.13.10", |
86 | 88 | "@types/current-git-branch": "^1.1.6", |
87 | 89 | "@types/eslint": "^8.56.2", |
88 | 90 | "@types/git-log-parser": "^1.2.3", |
89 | 91 | "@types/interpret": "^1.1.3", |
90 | 92 | "@types/jsonfile": "^6.1.4", |
91 | 93 | "@types/liftoff": "^4.0.3", |
92 | | - "@types/luxon": "^3.4.1", |
| 94 | + "@types/luxon": "^3.4.2", |
93 | 95 | "@types/minimist": "^1.2.5", |
94 | 96 | "@types/node": "^18.19.8", |
95 | | - "@types/semver": "^7.5.6", |
| 97 | + "@types/semver": "^7.5.7", |
96 | 98 | "@types/stream-to-array": "^2.3.3", |
97 | 99 | "@types/v8flags": "^3.1.3", |
98 | | - "@typescript-eslint/eslint-plugin": "^6.20.0", |
99 | | - "@typescript-eslint/parser": "^6.20.0", |
| 100 | + "@typescript-eslint/eslint-plugin": "^6.21.0", |
| 101 | + "@typescript-eslint/parser": "^6.21.0", |
100 | 102 | "eslint": "^8.56.0", |
101 | 103 | "eslint-config-prettier": "^9.1.0", |
102 | 104 | "eslint-import-resolver-typescript": "^3.6.1", |
103 | 105 | "eslint-plugin-import": "^2.29.1", |
104 | | - "jsdom": "^23.2.0", |
105 | | - "nx": "^17.3.2", |
| 106 | + "jsdom": "^24.0.0", |
| 107 | + "nx": "^18.0.4", |
106 | 108 | "prettier": "^4.0.0-alpha.8", |
107 | 109 | "publint": "^0.2.7", |
108 | | - "type-fest": "^4.9.0", |
| 110 | + "type-fest": "^4.10.2", |
109 | 111 | "typescript": "^5.3.3", |
110 | | - "vite": "^5.0.12", |
111 | | - "vitest": "^1.2.1" |
| 112 | + "vite": "^5.1.3", |
| 113 | + "vitest": "^1.3.0" |
112 | 114 | } |
113 | 115 | } |
0 commit comments