package-radar 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "package-radar",
3
+ "version": "0.0.2",
4
+ "description": "Weekly package news for your stack — with source links",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "package-radar": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "assets/hero.svg",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "typecheck": "tsc --noEmit",
18
+ "build": "tsup",
19
+ "clean": "rm -rf dist",
20
+ "start": "tsx src/index.ts",
21
+ "dev": "tsx src/index.ts",
22
+ "radar": "tsx src/index.ts",
23
+ "prepare": "yarn build",
24
+ "prepublishOnly": "yarn typecheck && yarn build",
25
+ "release": "release-it",
26
+ "release:dry": "release-it --dry-run"
27
+ },
28
+ "keywords": [
29
+ "cli",
30
+ "package-radar",
31
+ "dependencies",
32
+ "package-news",
33
+ "changelog",
34
+ "npm",
35
+ "openai",
36
+ "developer-tools",
37
+ "typescript"
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/watadarkstar/code-radar.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/watadarkstar/code-radar/issues"
45
+ },
46
+ "homepage": "https://github.com/watadarkstar/code-radar#readme",
47
+ "author": "Adrian Carolli <adrian.caarolli@gmail.com> (https://github.com/watadarkstar)",
48
+ "license": "MIT",
49
+ "publishConfig": {
50
+ "access": "public",
51
+ "registry": "https://registry.npmjs.org/"
52
+ },
53
+ "dependencies": {
54
+ "openai": "^6.46.0"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "^26.0.1",
58
+ "@typescript/native": "npm:typescript@^7.0.2",
59
+ "release-it": "^20.2.0",
60
+ "tslib": "^2.8.1",
61
+ "tsup": "^8.5.1",
62
+ "tsx": "^4.22.4",
63
+ "typescript": "npm:@typescript/typescript6@^6.0.2"
64
+ },
65
+ "engines": {
66
+ "node": ">=20"
67
+ }
68
+ }