@titocandradev/neatcore 0.4.0 → 0.4.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 +127 -123
package/README.md CHANGED
@@ -145,4 +145,4 @@ NeatCore is designed as a strongly-typed engineering utility foundation
145
145
 
146
146
  Read full API Design Guideline here:
147
147
 
148
- 👉 https://github.com/tcandra24/neat-core/blob/main/docs/API_DESIGN_GUIDELINE.md
148
+ 👉 https://tcandra24.github.io/neat-core/
package/package.json CHANGED
@@ -1,123 +1,127 @@
1
- {
2
- "name": "@titocandradev/neatcore",
3
- "version": "0.4.0",
4
- "private": false,
5
- "description": "A clean, zero-dependency, TypeScript-first utility core.",
6
- "homepage": "https://github.com/tcandra24/neat-core#readme",
7
- "bugs": {
8
- "url": "https://github.com/tcandra24/neat-core/issues"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/tcandra24/neat-core.git"
13
- },
14
- "license": "MIT",
15
- "author": "Tito Candra",
16
- "keywords": [
17
- "module",
18
- "util"
19
- ],
20
- "type": "module",
21
- "exports": {
22
- ".": {
23
- "import": "./dist/index.js",
24
- "require": "./dist/index.cjs"
25
- }
26
- },
27
- "main": "./dist/index.cjs",
28
- "types": "./dist/index.d.ts",
29
- "directories": {
30
- "test": "tests"
31
- },
32
- "files": [
33
- "dist"
34
- ],
35
- "scripts": {
36
- "dev": "tsup --watch",
37
- "build": "tsup",
38
- "test": "vitest",
39
- "test:run": "vitest run",
40
- "coverage": "vitest run --coverage"
41
- },
42
- "dependencies": {
43
- "acorn": "^8.15.0",
44
- "any-promise": "^1.3.0",
45
- "assertion-error": "^2.0.1",
46
- "ast-v8-to-istanbul": "^0.3.11",
47
- "bundle-require": "^5.1.0",
48
- "cac": "^6.7.14",
49
- "chai": "^6.2.2",
50
- "chokidar": "^4.0.3",
51
- "commander": "^4.1.1",
52
- "confbox": "^0.1.8",
53
- "consola": "^3.4.2",
54
- "debug": "^4.4.3",
55
- "es-module-lexer": "^1.7.0",
56
- "esbuild": "^0.27.3",
57
- "estree-walker": "^3.0.3",
58
- "expect-type": "^1.3.0",
59
- "fdir": "^6.5.0",
60
- "fix-dts-default-cjs-exports": "^1.0.1",
61
- "has-flag": "^4.0.0",
62
- "html-escaper": "^2.0.2",
63
- "istanbul-lib-coverage": "^3.2.2",
64
- "istanbul-lib-report": "^3.0.1",
65
- "istanbul-reports": "^3.2.0",
66
- "joycon": "^3.1.1",
67
- "js-tokens": "^10.0.0",
68
- "lilconfig": "^3.1.3",
69
- "lines-and-columns": "^1.2.4",
70
- "load-tsconfig": "^0.2.5",
71
- "magic-string": "^0.30.21",
72
- "magicast": "^0.5.2",
73
- "make-dir": "^4.0.0",
74
- "mlly": "^1.8.0",
75
- "ms": "^2.1.3",
76
- "mz": "^2.7.0",
77
- "nanoid": "^3.3.11",
78
- "object-assign": "^4.1.1",
79
- "obug": "^2.1.1",
80
- "pathe": "^2.0.3",
81
- "picocolors": "^1.1.1",
82
- "picomatch": "^4.0.3",
83
- "pirates": "^4.0.7",
84
- "pkg-types": "^1.3.1",
85
- "postcss": "^8.5.6",
86
- "postcss-load-config": "^6.0.1",
87
- "readdirp": "^4.1.2",
88
- "resolve-from": "^5.0.0",
89
- "rollup": "^4.57.1",
90
- "semver": "^7.7.4",
91
- "siginfo": "^2.0.0",
92
- "source-map": "^0.7.6",
93
- "source-map-js": "^1.2.1",
94
- "stackback": "^0.0.2",
95
- "std-env": "^3.10.0",
96
- "sucrase": "^3.35.1",
97
- "supports-color": "^7.2.0",
98
- "thenify": "^3.3.1",
99
- "thenify-all": "^1.6.0",
100
- "tinybench": "^2.9.0",
101
- "tinyexec": "^0.3.2",
102
- "tinyglobby": "^0.2.15",
103
- "tinyrainbow": "^3.0.3",
104
- "tree-kill": "^1.2.2",
105
- "ts-interface-checker": "^0.1.13",
106
- "ufo": "^1.6.3",
107
- "undici-types": "^7.16.0",
108
- "vite": "^7.3.1",
109
- "why-is-node-running": "^2.3.0"
110
- },
111
- "devDependencies": {
112
- "@types/node": "^25.2.3",
113
- "@vitest/coverage-v8": "^4.0.18",
114
- "tsup": "^8.5.1",
115
- "typescript": "^5.9.3",
116
- "vitest": "^4.0.18"
117
- },
118
- "publishConfig": {
119
- "access": "public"
120
- },
121
- "sideEffects": false,
122
- "module": "./dist/index.js"
123
- }
1
+ {
2
+ "name": "@titocandradev/neatcore",
3
+ "version": "0.4.1",
4
+ "private": false,
5
+ "description": "A clean, zero-dependency, TypeScript-first utility core.",
6
+ "homepage": "https://tcandra24.github.io/neat-core/",
7
+ "bugs": {
8
+ "url": "https://github.com/tcandra24/neat-core/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/tcandra24/neat-core.git"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Tito Candra",
16
+ "keywords": [
17
+ "module",
18
+ "util"
19
+ ],
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.cjs"
25
+ }
26
+ },
27
+ "main": "./dist/index.cjs",
28
+ "types": "./dist/index.d.ts",
29
+ "directories": {
30
+ "test": "tests"
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "scripts": {
36
+ "dev": "tsup --watch",
37
+ "build": "tsup",
38
+ "test": "vitest",
39
+ "test:run": "vitest run",
40
+ "coverage": "vitest run --coverage",
41
+ "docs:dev": "vitepress dev docs",
42
+ "docs:build": "vitepress build docs",
43
+ "docs:preview": "vitepress preview docs"
44
+ },
45
+ "dependencies": {
46
+ "acorn": "^8.15.0",
47
+ "any-promise": "^1.3.0",
48
+ "assertion-error": "^2.0.1",
49
+ "ast-v8-to-istanbul": "^0.3.11",
50
+ "bundle-require": "^5.1.0",
51
+ "cac": "^6.7.14",
52
+ "chai": "^6.2.2",
53
+ "chokidar": "^4.0.3",
54
+ "commander": "^4.1.1",
55
+ "confbox": "^0.1.8",
56
+ "consola": "^3.4.2",
57
+ "debug": "^4.4.3",
58
+ "es-module-lexer": "^1.7.0",
59
+ "esbuild": "^0.27.3",
60
+ "estree-walker": "^3.0.3",
61
+ "expect-type": "^1.3.0",
62
+ "fdir": "^6.5.0",
63
+ "fix-dts-default-cjs-exports": "^1.0.1",
64
+ "has-flag": "^4.0.0",
65
+ "html-escaper": "^2.0.2",
66
+ "istanbul-lib-coverage": "^3.2.2",
67
+ "istanbul-lib-report": "^3.0.1",
68
+ "istanbul-reports": "^3.2.0",
69
+ "joycon": "^3.1.1",
70
+ "js-tokens": "^10.0.0",
71
+ "lilconfig": "^3.1.3",
72
+ "lines-and-columns": "^1.2.4",
73
+ "load-tsconfig": "^0.2.5",
74
+ "magic-string": "^0.30.21",
75
+ "magicast": "^0.5.2",
76
+ "make-dir": "^4.0.0",
77
+ "mlly": "^1.8.0",
78
+ "ms": "^2.1.3",
79
+ "mz": "^2.7.0",
80
+ "nanoid": "^3.3.11",
81
+ "object-assign": "^4.1.1",
82
+ "obug": "^2.1.1",
83
+ "pathe": "^2.0.3",
84
+ "picocolors": "^1.1.1",
85
+ "picomatch": "^4.0.3",
86
+ "pirates": "^4.0.7",
87
+ "pkg-types": "^1.3.1",
88
+ "postcss": "^8.5.6",
89
+ "postcss-load-config": "^6.0.1",
90
+ "readdirp": "^4.1.2",
91
+ "resolve-from": "^5.0.0",
92
+ "rollup": "^4.57.1",
93
+ "semver": "^7.7.4",
94
+ "siginfo": "^2.0.0",
95
+ "source-map": "^0.7.6",
96
+ "source-map-js": "^1.2.1",
97
+ "stackback": "^0.0.2",
98
+ "std-env": "^3.10.0",
99
+ "sucrase": "^3.35.1",
100
+ "supports-color": "^7.2.0",
101
+ "thenify": "^3.3.1",
102
+ "thenify-all": "^1.6.0",
103
+ "tinybench": "^2.9.0",
104
+ "tinyexec": "^0.3.2",
105
+ "tinyglobby": "^0.2.15",
106
+ "tinyrainbow": "^3.0.3",
107
+ "tree-kill": "^1.2.2",
108
+ "ts-interface-checker": "^0.1.13",
109
+ "ufo": "^1.6.3",
110
+ "undici-types": "^7.16.0",
111
+ "vite": "^7.3.1",
112
+ "why-is-node-running": "^2.3.0"
113
+ },
114
+ "devDependencies": {
115
+ "@types/node": "^25.2.3",
116
+ "@vitest/coverage-v8": "^4.0.18",
117
+ "tsup": "^8.5.1",
118
+ "typescript": "^5.9.3",
119
+ "vitepress": "^2.0.0-alpha.16",
120
+ "vitest": "^4.0.18"
121
+ },
122
+ "publishConfig": {
123
+ "access": "public"
124
+ },
125
+ "sideEffects": false,
126
+ "module": "./dist/index.js"
127
+ }