@ts-utilities/core 1.0.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 ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@ts-utilities/core",
3
+ "version": "1.0.0",
4
+ "author": "Sohan Emon <sohanemon@outlook.com>",
5
+ "description": "Core utilities for JavaScript/TypeScript projects, including React Native",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "source": "./src/index.ts",
11
+ "types": "./dist/index.d.cts",
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.js",
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.cjs"
18
+ }
19
+ },
20
+ "scripts": {
21
+ "build": "tsdown",
22
+ "dev": "tsdown --watch",
23
+ "test": "vitest",
24
+ "test:run": "vitest run --silent",
25
+ "lint": "biome lint .",
26
+ "lint:fix": "biome lint --write --unsafe .",
27
+ "format": "biome format .",
28
+ "format:write": "biome format . --write",
29
+ "typecheck": "tsgo --noEmit",
30
+ "release": "tsgo --noEmit && npm run build && npm publish"
31
+ },
32
+ "keywords": [
33
+ "utils",
34
+ "core",
35
+ "typescript",
36
+ "react-native"
37
+ ],
38
+ "license": "ISC",
39
+ "homepage": "https://sohanjs.web.app/core",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/sohanemon/core.git"
43
+ },
44
+ "bugs": {
45
+ "url": "https://github.com/sohanemon/core/issues"
46
+ },
47
+ "devDependencies": {
48
+ "@biomejs/biome": "2.3.8",
49
+ "@testing-library/jest-dom": "^6.9.1",
50
+ "@testing-library/react": "^16.3.0",
51
+ "@tsconfig/strictest": "^2.0.8",
52
+ "@types/node": "^24.10.1",
53
+ "@vitejs/plugin-react": "^5.1.1",
54
+ "@vitest/ui": "^4.0.14",
55
+ "jsdom": "^27.2.0",
56
+ "tsdown": "^0.16.4",
57
+ "typedoc": "^0.28.15",
58
+ "typedoc-plugin-markdown": "^4.9.0",
59
+ "typescript": "^5.9.3",
60
+ "vite": "npm:rolldown-vite@^7.2.5",
61
+ "vitest": "^4.0.14"
62
+ },
63
+ "publishConfig": {
64
+ "access": "public"
65
+ }
66
+ }