-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.67 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.67 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
{
"name": "make-matrix",
"version": "4.0.3",
"license": "MIT",
"description": "A simple, type-safe way to create multi-dimensional arrays",
"author": "Neef Rehman",
"keywords": [
"matrix",
"nth dimension",
"array",
"multidimensional",
"math",
"typescript"
],
"homepage": "https://github.com/neefrehman/make-matrix",
"repository": {
"type": "git",
"url": "git+https://github.com/neefrehman/make-matrix.git"
},
"bugs": {
"url": "https://github.com/neefrehman/make-matrix/issues"
},
"files": [
"src/**/*",
"dist/**/*"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"development": "./src/index.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"check": "biome check",
"check:fix": "biome check --write",
"format:fix": "biome format --write",
"typecheck": "tsc",
"test": "vitest run",
"build": "tsdown --config='scripts/build.ts'",
"preversion": "pnpm run check",
"version": "pnpm run build && pnpm run format:fix && git add -A src",
"postversion": "pnpm run benchmark:ci && node --experimental-strip-types scripts/update-badges.ts && git push && git push --tags",
"commit-msg": "commitlint -e",
"commitizen": "cz",
"commitlint": "commitlint",
"benchmark": "node --experimental-strip-types scripts/run-benchmark.ts current",
"benchmark:ci": "node --experimental-strip-types scripts/run-benchmark.ts current ci",
"benchmark:diff": "node --experimental-strip-types scripts/run-benchmark.ts diff",
"benchmark:diff:ci": "node --experimental-strip-types scripts/run-benchmark.ts diff ci"
},
"devDependencies": {
"@actions/github": "6.0.1",
"@biomejs/biome": "2.2.4",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@semantic-release/git": "10.0.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "24.3.3",
"benny": "3.7.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "24.2.8",
"simple-git-hooks": "2.13.1",
"tsdown": "0.15.1",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"simple-git-hooks": {
"commit-msg": "pnpm run commit-msg",
"pre-commit": "pnpm run check:fix && pnpm run test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
200
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.15.1"
}