js-utils-kit 0.0.0 → 0.1.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.
package/package.json CHANGED
@@ -1,72 +1,94 @@
1
- {
2
- "name": "js-utils-kit",
3
- "version": "0.0.0",
4
- "description": "Essential JavaScript helpers",
5
- "license": "MIT",
6
- "private": false,
7
- "repository": "https://github.com/TenEplaysOfficial/js-utils-kit",
8
- "author": {
9
- "name": "Sriman",
10
- "email": "136729116+TenEplaysOfficial@users.noreply.github.com",
11
- "url": "https://tene.vercel.app"
12
- },
13
- "keywords": [
14
- "javascript",
15
- "utils",
16
- "helpers",
17
- "toolkit",
18
- "typescript",
19
- "promise",
20
- "array",
21
- "object",
22
- "small"
23
- ],
24
- "type": "module",
25
- "files": [
26
- "dist/**/*"
27
- ],
28
- "bin": {
29
- "js-utils-kit": "dist/index.js"
30
- },
31
- "main": "dist/index.cjs.js",
32
- "module": "dist/index.esm.js",
33
- "types": "dist/index.d.ts",
34
- "exports": {
35
- ".": {
36
- "import": {
37
- "types": "./dist/index.d.ts",
38
- "default": "./dist/index.esm.js"
39
- },
40
- "require": {
41
- "types": "./dist/index.d.ts",
42
- "default": "./dist/index.cjs.js"
43
- }
44
- }
45
- },
46
- "scripts": {
47
- "build": "rollup -c && yarn types",
48
- "types": "tsc",
49
- "watch": "rollup -c --watch",
50
- "lint": "eslint .",
51
- "format": "prettier --write ."
52
- },
53
- "devDependencies": {
54
- "@eslint/js": "^9.29.0",
55
- "@eslint/json": "^0.12.0",
56
- "@eslint/markdown": "^6.6.0",
57
- "@rollup/plugin-commonjs": "^28.0.6",
58
- "@rollup/plugin-json": "^6.1.0",
59
- "@rollup/plugin-node-resolve": "^16.0.1",
60
- "@rollup/plugin-typescript": "^12.1.3",
61
- "eslint": "^9.29.0",
62
- "globals": "^16.2.0",
63
- "prettier": "^3.6.0",
64
- "rollup": "^4.44.0",
65
- "rollup-plugin-delete": "^3.0.1",
66
- "rollup-plugin-peer-deps-external": "^2.2.4",
67
- "rollup-plugin-terser": "^7.0.2",
68
- "tslib": "^2.8.1",
69
- "typescript": "^5.8.3",
70
- "typescript-eslint": "^8.35.0"
71
- }
72
- }
1
+ {
2
+ "name": "js-utils-kit",
3
+ "displayName": "JS Utils Kit",
4
+ "version": "0.1.0",
5
+ "description": "Essential JavaScript helpers",
6
+ "license": "MIT",
7
+ "private": false,
8
+ "repository": "https://github.com/TenEplaysOfficial/js-utils-kit",
9
+ "bugs": {
10
+ "url": "https://github.com/TenEplaysOfficial/js-utils-kit/issues"
11
+ },
12
+ "author": {
13
+ "name": "Sriman",
14
+ "email": "136729116+TenEplaysOfficial@users.noreply.github.com",
15
+ "url": "https://tene.vercel.app"
16
+ },
17
+ "keywords": [
18
+ "javascript",
19
+ "utils",
20
+ "helpers",
21
+ "toolkit",
22
+ "typescript"
23
+ ],
24
+ "type": "module",
25
+ "files": [
26
+ "dist/**/*"
27
+ ],
28
+ "bin": {
29
+ "js-utils-kit": "dist/cli/index.js"
30
+ },
31
+ "main": "dist/index.cjs.js",
32
+ "module": "dist/index.esm.js",
33
+ "types": "dist/index.d.ts",
34
+ "exports": {
35
+ ".": {
36
+ "import": {
37
+ "types": "./dist/index.d.ts",
38
+ "default": "./dist/index.esm.js"
39
+ },
40
+ "require": {
41
+ "types": "./dist/index.d.ts",
42
+ "default": "./dist/index.cjs.js"
43
+ }
44
+ }
45
+ },
46
+ "lint-staged": {
47
+ "*.{js,mjs,ts,json,md,yml}": "yarn format"
48
+ },
49
+ "scripts": {
50
+ "test": "jest",
51
+ "build": "rollup -c && yarn docs",
52
+ "release": "release-it",
53
+ "watch": "rollup -c --watch",
54
+ "lint": "eslint .",
55
+ "lint:fix": "npx eslint . --fix",
56
+ "format": "prettier --write",
57
+ "format:check": "prettier --check .",
58
+ "prepare": "husky",
59
+ "docs": "typedoc"
60
+ },
61
+ "devDependencies": {
62
+ "@eslint/js": "^9.29.0",
63
+ "@eslint/json": "^0.12.0",
64
+ "@eslint/markdown": "^6.6.0",
65
+ "@release-it/conventional-changelog": "^10.0.1",
66
+ "@rollup/plugin-commonjs": "^28.0.6",
67
+ "@rollup/plugin-node-resolve": "^16.0.1",
68
+ "@rollup/plugin-terser": "^0.4.4",
69
+ "@rollup/plugin-typescript": "^12.1.3",
70
+ "@types/archiver": "^6.0.3",
71
+ "@types/jest": "^30.0.0",
72
+ "@types/node": "^24.0.4",
73
+ "archiver": "^7.0.1",
74
+ "commander": "^14.0.0",
75
+ "eslint": "^9.29.0",
76
+ "globals": "^16.2.0",
77
+ "husky": "^9.1.7",
78
+ "jest": "^30.0.3",
79
+ "jest-environment-node": "^30.0.2",
80
+ "lint-staged": "^16.1.2",
81
+ "ora": "^8.2.0",
82
+ "prettier": "^3.6.0",
83
+ "release-it": "^19.0.3",
84
+ "rollup": "^4.44.0",
85
+ "rollup-plugin-delete": "^3.0.1",
86
+ "rollup-plugin-dts": "^6.2.1",
87
+ "rollup-plugin-peer-deps-external": "^2.2.4",
88
+ "ts-jest": "^29.4.0",
89
+ "tslib": "^2.8.1",
90
+ "typedoc": "^0.28.5",
91
+ "typescript": "^5.8.3",
92
+ "typescript-eslint": "^8.35.0"
93
+ }
94
+ }