@cleanweb/oore 1.0.0 → 1.0.1-alpha.0

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.
Files changed (1) hide show
  1. package/package.json +11 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cleanweb/oore",
3
- "version": "1.0.0",
4
- "description": "A library of helpers for writing cleaner React function components.",
3
+ "version": "1.0.1-alpha.0",
4
+ "description": "A library of helpers for writing cleaner React function components with object-oriented patterns.",
5
5
  "engines": {
6
6
  "node": ">=18"
7
7
  },
@@ -22,25 +22,26 @@
22
22
  "./all": "./build/index.js"
23
23
  },
24
24
  "scripts": {
25
- "prebuild": "rimraf ./build && npm run build:docs",
25
+ "prebuild": "rimraf ./build",
26
26
  "build": "tsc && tsc-alias",
27
- "serve-docs": "serve docs",
28
27
  "postbuild": "copyfiles tsconfig.json build",
29
28
  "build:docs": "typedoc",
30
29
  "_": "",
30
+ "serve-docs": "serve docs",
31
+ "__": "",
31
32
  "prepublishOnly": "npm run build",
32
33
  "publish:patch": "npm version patch && npm publish",
33
34
  "publish:minor": "npm version minor && npm publish",
34
35
  "publish:major": "npm version major && npm publish",
35
- "__": "/// Increment beta number for the current patch version. ///",
36
+ "___": "/// Increment beta number for the current patch version. ///",
36
37
  "publish:beta:current": "npm version prerelease --preid beta && npm publish --tag beta",
37
- "___": "/// Create a beta.0 for a new patch/minor/major version ///",
38
+ "____": "/// Create a beta.0 for a new patch/minor/major version ///",
38
39
  "publish:beta:new-patch": "npm version prepatch --preid beta && npm publish --tag beta",
39
40
  "publish:beta:new-minor": "npm version preminor --preid beta && npm publish --tag beta",
40
41
  "publish:beta:new-major": "npm version premajor --preid beta && npm publish --tag beta",
41
- "____": "",
42
+ "_____": "",
42
43
  "//postpublish": "cd ./mirror-pkg && npm publish && cd ..",
43
- "______": "",
44
+ "_______": "",
44
45
  "test": "echo \"No tests ATM\""
45
46
  },
46
47
  "keywords": [
@@ -59,6 +60,8 @@
59
60
  "name": "Feranmi Akinlade",
60
61
  "url": "https://feranmi.dev"
61
62
  },
63
+ "repository": "https://github.com/cleanjsweb/oore",
64
+ "homepage": "https://cleanjsweb.github.io/oore/",
62
65
  "license": "MIT",
63
66
  "devDependencies": {
64
67
  "@babel/eslint-parser": "^7.25.9",