-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.32 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.32 KB
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
103
104
105
106
{
"name": "generic-type-guard",
"version": "5.1.0",
"type": "module",
"publishConfig": {
"provenance": true
},
"description": "Generic type guards for TypeScript",
"main": "./generic-type-guard.cjs",
"types": "./generic-type-guard.d.cts",
"engines": {
"node": ">= 18"
},
"exports": {
".": {
"require": {
"types": "./generic-type-guard.d.cts",
"default": "./generic-type-guard.cjs"
},
"import": {
"types": "./generic-type-guard.d.ts",
"default": "./generic-type-guard.js"
}
}
},
"scripts": {
"clean": "rimraf dist generic-type-guard.* coverage temp .turbo/cache",
"build:tsc": "tsc --target es5",
"build:api": "api-extractor run --local --verbose && cp generic-type-guard.d.ts generic-type-guard.d.cts",
"build:esbuild:cjs": "esbuild dist/index.js --bundle --sourcemap=linked --outfile=generic-type-guard.cjs --platform=node --packages=external",
"build:esbuild:esm": "esbuild dist/index.js --bundle --sourcemap=linked --outfile=generic-type-guard.js --platform=neutral --packages=external",
"prepack": "turbo clean && turbo build",
"test": "git diff --name-only --exit-code etc",
"test-watch": "nodemon -e ts,json --exec turbo test",
"lint": "eslint",
"lint-fix": "eslint",
"lint-watch": "nodemon -e ts,json --exec eslint",
"jest": "NODE_OPTIONS='--experimental-vm-modules' jest",
"stryker": "stryker run",
"stryker-watch": "nodemon -e ts,json --exec stryker run",
"cs-version": "turbo build && changeset version",
"cs-release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mscharley/generic-type-guard.git"
},
"keywords": [
"typescript",
"typeguard",
"type-guard",
"ts"
],
"author": "Matthew Scharley",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mscharley/generic-type-guard/issues"
},
"homepage": "https://github.com/mscharley/generic-type-guard#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/mscharley"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@jest/globals": "30.3.0",
"@microsoft/api-extractor": "7.58.2",
"@eslint/js": "catalog:lint",
"@mscharley/eslint-config": "4.2.22",
"@mscharley/prettier-config": "3.1.8",
"@stylistic/eslint-plugin": "catalog:lint",
"eslint": "catalog:lint",
"eslint-import-resolver-typescript": "catalog:lint",
"eslint-plugin-import": "catalog:lint",
"eslint-plugin-jest": "catalog:lint",
"eslint-plugin-n": "catalog:lint",
"eslint-plugin-notice": "catalog:lint",
"eslint-plugin-react": "catalog:lint",
"eslint-plugin-react-hooks": "catalog:lint",
"prettier": "catalog:lint",
"prettier-plugin-toml": "catalog:lint",
"typescript-eslint": "catalog:lint",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/jest-runner": "9.6.1",
"@stryker-mutator/typescript-checker": "9.6.1",
"@swc/jest": "0.2.39",
"@types/node": "24.12.2",
"esbuild": "0.28.0",
"jest": "30.3.0",
"nodemon": "3.1.14",
"rimraf": "6.1.3",
"source-map-support": "0.5.21",
"testdouble": "3.20.2",
"ts-node": "10.9.2",
"turbo": "2.9.6",
"typescript": "5.9.3"
},
"packageManager": "[email protected]+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"unrs-resolver"
]
}
}