@hypernym/utils 2.0.0 → 2.0.1

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +12 -13
package/README.md CHANGED
@@ -5,7 +5,7 @@ A collection of reusable utilities.
5
5
  <sub><a href="https://github.com/hypernym-studio/utils">Repository</a> | <a href="https://www.npmjs.com/package/@hypernym/utils">Package</a> | <a href="https://github.com/hypernym-studio/utils/releases">Releases</a> | <a href="https://github.com/hypernym-studio/utils/discussions">Discussions</a></sub>
6
6
 
7
7
  ```sh
8
- npm i -D @hypernym/utils
8
+ npm i @hypernym/utils
9
9
  ```
10
10
 
11
11
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypernym/utils",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "A collection of reusable utilities.",
6
6
  "license": "MIT",
@@ -22,37 +22,36 @@
22
22
  "dist"
23
23
  ],
24
24
  "keywords": [
25
+ "javascript",
25
26
  "typescript",
26
27
  "collection",
27
28
  "utilities",
28
29
  "helpers",
29
30
  "utils",
30
31
  "types",
31
- "kit"
32
+ "kit",
33
+ "js",
34
+ "ts"
32
35
  ],
33
36
  "scripts": {
34
37
  "dev": "vite playgrounds/client",
35
38
  "dev:node": "vite-node -w playgrounds/node/main.ts",
36
39
  "build": "rolli",
37
- "bump": "bummp",
38
- "test:types": "vitest -c ./.config/vitest.config.ts typecheck",
40
+ "test:types": "vitest -c .config/vitest.config.ts typecheck",
39
41
  "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js .",
40
42
  "lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js --fix .",
41
43
  "format": "prettier --config .config/prettier.config.js --write .",
42
44
  "prepublishOnly": "npm run build"
43
45
  },
44
46
  "devDependencies": {
45
- "@hypernym/eslint-config": "^2.0.0",
46
- "@hypernym/prettier-config": "^2.0.0",
47
+ "@hypernym/eslint-config": "^2.0.1",
48
+ "@hypernym/prettier-config": "^2.0.1",
47
49
  "@hypernym/tsconfig": "^1.0.1",
48
- "@types/node": "^20.6.2",
49
- "bummp": "^0.2.0",
50
- "eslint": "^8.49.0",
50
+ "@types/node": "^20.8.2",
51
+ "eslint": "^8.50.0",
51
52
  "prettier": "^3.0.3",
52
- "rolli": "^0.6.1",
53
+ "rolli": "^0.7.0",
53
54
  "typescript": "^5.1.6",
54
- "vite": "^4.4.9",
55
- "vite-node": "^0.34.4",
56
- "vitest": "^0.34.4"
55
+ "vitest": "^0.34.6"
57
56
  }
58
57
  }