-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@adam-rocska/ts-codec",
"version": "1.2.3",
"description": "TypeScript library offering robust contracts for encoding and decoding values with strong type safety.",
"keywords": [
"typescript",
"encoding",
"decoding",
"codec",
"transformation",
"serialization",
"deserialization",
"strongly-typed",
"type-safe",
"data-serialization",
"data-transformation",
"functional-api",
"json",
"encoder",
"decoder"
],
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/adam-rocska/ts-codec.git"
},
"bugs": {
"url": "https://github.com/adam-rocska/ts-codec/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/adam-rocska"
}
],
"scripts": {
"clean": "rimraf dist",
"build": "bunchee",
"test": "jest --env node",
"check": "pnpm eslint && pnpm attw --pack"
},
"author": {
"name": "Adam Laszlo Rocska",
"url": "https://github.com/adam-rocska"
},
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.1",
"@swc/jest": "^0.2.36",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "^29.5.12",
"bunchee": "^5.4.0",
"eslint-config-next": "^14.2.8",
"jest": "^29.7.0",
"pnpm": "^9.9.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^@adam-rocska/ts-codec$": "<rootDir>/src/index.ts",
"^!(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testTimeout": 1000
},
"packageManager": "pnpm@9.4.0"
}