Skip to content

Commit 3a89dd5

Browse files
committed
chore: update package.json files for improved metadata and dependencies
1 parent 680d36e commit 3a89dd5

File tree

4 files changed

+90
-15
lines changed

4 files changed

+90
-15
lines changed

adex/package.json

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,51 @@
11
{
22
"name": "adex",
33
"version": "0.0.19",
4-
"description": "An easier way to build apps with Vite and Preact",
4+
"description": "A minimal, fast framework for building apps with Vite and Preact. Simple SSR, routing, and utilities for modern web projects.",
55
"keywords": [
66
"adex",
77
"preact",
8+
"vite",
9+
"ssr",
10+
"framework",
811
"minimal",
912
"server",
10-
"node"
13+
"node",
14+
"web",
15+
"routing"
1116
],
12-
"bugs": "github.com/barelyhuman/adex/issues",
17+
"homepage": "https://github.com/barelyhuman/adex#readme",
18+
"bugs": {
19+
"url": "https://github.com/barelyhuman/adex/issues",
20+
"email": "ahoy@barelyhuman.dev"
21+
},
1322
"repository": {
1423
"type": "git",
15-
"url": "github.com/barelyhuman/adex"
24+
"url": "https://github.com/barelyhuman/adex.git"
25+
},
26+
"author": {
27+
"name": "barelyhuman",
28+
"email": "ahoy@barelyhuman.dev",
29+
"url": "https://reaper.is"
30+
},
31+
"contributors": [
32+
{
33+
"name": "barelyhuman",
34+
"email": "ahoy@barelyhuman.dev",
35+
"url": "https://reaper.is"
36+
}
37+
],
38+
"license": "MIT",
39+
"engines": {
40+
"node": ">=18.0.0"
41+
},
42+
"funding": {
43+
"type": "github",
44+
"url": "https://github.com/sponsors/barelyhuman"
1645
},
1746
"type": "module",
47+
"main": "./src/vite.js",
48+
"module": "./src/vite.js",
1849
"exports": {
1950
"./package.json": "./package.json",
2051
"./router": {
@@ -58,6 +89,11 @@
5889
"import": "./src/vite.js"
5990
}
6091
},
92+
"sideEffects": false,
93+
"publishConfig": {
94+
"access": "public",
95+
"registry": "https://registry.npmjs.org/"
96+
},
6197
"files": [
6298
"src",
6399
"runtime"

create-adex/package.json

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,46 @@
11
{
22
"name": "create-adex",
33
"version": "0.0.19",
4-
"bin": {
5-
"create-adex": "./cli.mjs"
6-
},
7-
"description": "CLI to create adex projects",
4+
"description": "A CLI tool to quickly scaffold new Adex projects with minimal setup.",
85
"keywords": [
96
"adex",
107
"preact",
118
"minimal",
129
"server",
13-
"node"
10+
"node",
11+
"cli",
12+
"scaffold",
13+
"starter",
14+
"project"
1415
],
15-
"bugs": "github.com/barelyhuman/adex/issues",
16+
"homepage": "https://github.com/barelyhuman/adex#create-adex",
1617
"repository": {
1718
"type": "git",
18-
"url": "github.com/barelyhuman/adex"
19+
"url": "https://github.com/barelyhuman/adex.git"
20+
},
21+
"bugs": {
22+
"url": "https://github.com/barelyhuman/adex/issues"
23+
},
24+
"author": "reaper <ahoy@barelyhuman.dev>",
25+
"license": "MIT",
26+
"funding": {
27+
"type": "github",
28+
"url": "https://github.com/sponsors/barelyhuman"
29+
},
30+
"main": "./cli.mjs",
31+
"exports": {
32+
".": "./cli.mjs"
1933
},
2034
"type": "module",
2135
"files": [
2236
"cli.mjs"
2337
],
38+
"bin": {
39+
"create-adex": "./cli.mjs"
40+
},
41+
"engines": {
42+
"node": ">=18.0.0"
43+
},
2444
"dependencies": {
2545
"kleur": "^4.1.5",
2646
"node-stream-zip": "^1.15.0"
Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
{
22
"name": "adex-adapter-node",
33
"version": "0.0.19",
4+
"description": "Node.js adapter for Adex, enabling minimal server-side rendering and integration with Preact.",
45
"keywords": [
56
"adex",
67
"preact",
78
"minimal",
89
"server",
9-
"node"
10+
"node",
11+
"ssr",
12+
"adapter"
1013
],
11-
"bugs": "github.com/barelyhuman/adex/issues",
14+
"author": "reaper <ahoy@barelyhuman.dev>",
15+
"license": "MIT",
1216
"repository": {
1317
"type": "git",
14-
"url": "github.com/barelyhuman/adex"
18+
"url": "https://github.com/barelyhuman/adex"
1519
},
20+
"bugs": {
21+
"url": "https://github.com/barelyhuman/adex/issues"
22+
},
23+
"homepage": "https://github.com/barelyhuman/adex/tree/main/packages/adapters/node",
1624
"type": "module",
25+
"main": "./lib/index.js",
1726
"exports": {
1827
".": {
1928
"types": "./lib/index.d.ts",
@@ -22,5 +31,12 @@
2231
},
2332
"files": [
2433
"lib"
25-
]
34+
],
35+
"engines": {
36+
"node": ">=18.0.0"
37+
},
38+
"funding": {
39+
"type": "github",
40+
"url": "https://github.com/sponsors/barelyhuman"
41+
}
2642
}

playground/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "playground",
33
"private": true,
44
"version": "0.0.19",
5+
"engines": {
6+
"node": ">=18.0.0"
7+
},
58
"type": "module",
69
"scripts": {
710
"dev": "vite",

0 commit comments

Comments
 (0)