@vicin/phantom 1.0.5 → 1.0.8

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,61 +1,60 @@
1
- {
2
- "name": "@vicin/phantom",
3
- "version": "1.0.5",
4
- "description": "Powerful, lightweight TypeScript library for nominal typing.",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "https://github.com/ZiadTaha62/phantom.git"
13
- },
14
- "homepage": "https://github.com/ZiadTaha62/phantom#readme",
15
- "scripts": {
16
- "build": "tsup",
17
- "dev": "tsup --watch",
18
- "lint": "eslint --fix",
19
- "format": "prettier --write",
20
- "test": "jest tests && tsd",
21
- "test:unit": "jest tests/unit --coverage",
22
- "test:types": "tsd",
23
- "prepublishOnly": "npm run build && npm run test:unit && npm run test:types"
24
- },
25
- "files": [
26
- "dist",
27
- "README.md"
28
- ],
29
- "tsd": {
30
- "directory": "tests/types",
31
- "compilerOptions": {
32
- "strict": true,
33
- "esModuleInterop": true,
34
- "moduleResolution": "node"
35
- }
36
- },
37
- "keywords": [
38
- "typescript",
39
- "nominal-typing",
40
- "ddd"
41
- ],
42
- "author": "Ziad ziadtaha62@gmail.com",
43
- "license": "MIT",
44
- "devDependencies": {
45
- "@types/jest": "^30.0.0",
46
- "@typescript-eslint/eslint-plugin": "^8.54.0",
47
- "@typescript-eslint/parser": "^8.54.0",
48
- "eslint": "^9.39.2",
49
- "eslint-config-prettier": "^10.1.8",
50
- "eslint-plugin-prettier": "^5.5.5",
51
- "globals": "^17.3.0",
52
- "jest": "^30.2.0",
53
- "prettier": "^3.8.1",
54
- "ts-jest": "^29.4.6",
55
- "tsd": "^0.33.0",
56
- "typescript": "^5.9.3"
57
- },
58
- "dependencies": {
59
- "tsup": "^8.5.1"
60
- }
61
- }
1
+ {
2
+ "name": "@vicin/phantom",
3
+ "version": "1.0.8",
4
+ "description": "Powerful, lightweight TypeScript library for nominal typing.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/ZiadTaha62/phantom.git"
13
+ },
14
+ "homepage": "https://github.com/ZiadTaha62/phantom#readme",
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "tsup --watch",
18
+ "lint": "eslint --fix",
19
+ "format": "prettier --write",
20
+ "typecheck": "tsc --noEmit",
21
+ "test": "npm run test:unit && npm run test:types",
22
+ "test:unit": "jest tests/unit --coverage",
23
+ "test:types": "tsd",
24
+ "prepublishOnly": "npm run build && npm run test"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "tsd": {
31
+ "directory": "tests/types",
32
+ "compilerOptions": {
33
+ "strict": true,
34
+ "esModuleInterop": true,
35
+ "moduleResolution": "node"
36
+ }
37
+ },
38
+ "keywords": [
39
+ "typescript",
40
+ "nominal-typing",
41
+ "ddd"
42
+ ],
43
+ "author": "Ziad ziadtaha62@gmail.com",
44
+ "license": "MIT",
45
+ "devDependencies": {
46
+ "@types/jest": "^30.0.0",
47
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
48
+ "@typescript-eslint/parser": "^8.54.0",
49
+ "eslint": "^9.39.2",
50
+ "eslint-config-prettier": "^10.1.8",
51
+ "eslint-plugin-prettier": "^5.5.5",
52
+ "globals": "^17.3.0",
53
+ "jest": "^30.2.0",
54
+ "prettier": "^3.8.1",
55
+ "ts-jest": "^29.4.6",
56
+ "tsd": "^0.33.0",
57
+ "typescript": "^5.9.3",
58
+ "tsup": "^8.5.1"
59
+ }
60
+ }