-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.94 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@webdeveric/utils",
"description": "Just another collection of utilities.",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"utilities",
"helpers"
],
"author": {
"email": "eric@webdeveric.com",
"name": "Eric King",
"url": "http://webdeveric.com/"
},
"type": "module",
"sideEffects": false,
"main": "./dist/mjs/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/mjs/index.js"
},
"./predicate/factory": {
"types": "./dist/types/predicate/factory/index.d.ts",
"require": "./dist/cjs/predicate/factory/index.js",
"import": "./dist/mjs/predicate/factory/index.js"
},
"./predicate": {
"types": "./dist/types/predicate/index.d.ts",
"require": "./dist/cjs/predicate/index.js",
"import": "./dist/mjs/predicate/index.js"
},
"./assertion": {
"types": "./dist/types/assertion/index.d.ts",
"require": "./dist/cjs/assertion/index.js",
"import": "./dist/mjs/assertion/index.js"
},
"./types": {
"types": "./dist/types/types/index.d.ts",
"require": "./dist/cjs/types/index.js",
"import": "./dist/mjs/types/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"require": "./dist/cjs/*.js",
"import": "./dist/mjs/*.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/webdeveric/utils.git"
},
"bugs": {
"url": "https://github.com/webdeveric/utils/issues"
},
"homepage": "https://github.com/webdeveric/utils/#readme",
"packageManager": "pnpm@11.25.0+sha512.5cde925b4f075f725eb71fbae18a42ffe784524789f19b61c731cb8721ec28aaee160e01a8d5af4fedb2a42cdbf300efe23db356b0d4a17b4d63e11f8ab7c956",
"scripts": {
"clean": "rimraf ./dist/ ./cache/ ./coverage/",
"prebuild": "pnpm clean",
"build": "tsc --build tsconfig.cjs.json tsconfig.mjs.json --force",
"build:docs": "typedoc",
"postbuild": "echo '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json && echo '{\"type\":\"module\"}' > ./dist/mjs/package.json && pnpm validate",
"typecheck": "tsc --build --verbose --noEmit",
"lint": "eslint ./*.{js,cjs,mjs,ts,cts,mts} ./src/ ./bench/ ./test/ --ext .ts,.mjs,.cjs",
"bench": "vitest bench",
"test": "vitest --typecheck",
"coverage": "vitest run --coverage --typecheck",
"validate": "validate-package-exports --check",
"spellcheck": "cspell './{.github,src,bench,test}/**/*.{ts,json}' './*.{md,mjs,mts}' './package.json' --no-progress",
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage && pnpm build",
"format": "prettier --write ./*.{js,json,md} ./src/ ./bench/ ./test/",
"prepare": "husky"
},
"prettier": "@webdeveric/prettier-config",
"devDependencies": {
"@commitlint/config-conventional": "^21.2.2",
"@commitlint/types": "^21.2.0",
"@types/node": "^24.13.3",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "^4.1.11",
"@webdeveric/eslint-config-ts": "^0.12.1",
"@webdeveric/prettier-config": "^0.4.0",
"@webdeveric/ts-data-structures": "^1.0.1",
"commitlint": "^21.2.2",
"commitlint-plugin-cspell": "^0.9.4",
"conventional-changelog-conventionalcommits": "^9.3.1",
"cspell": "^10.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.4.1",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.9",
"typedoc": "^0.28.20",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"validate-package-exports": "^1.4.0",
"vitest": "^4.1.11"
}
}