-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 881 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 881 Bytes
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
{
"name": "ts-array-length",
"version": "0.1.3",
"description": "TypeScript utils for dealing with TypeScript arrays",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"node": "./dist/index.cjs"
}
},
"scripts": {
"release": "bumpp",
"build": "tsc",
"build:watch": "tsc -w",
"test": "vitest",
"test-type": "vitest typecheck"
},
"repository": "github:uhyo/ts-array-length",
"keywords": [
"typescript",
"array",
"length"
],
"files": [
"dist",
"src"
],
"author": "uhyo <uhyo@uhy.ooo>",
"license": "MIT",
"devDependencies": {
"bumpp": "^9.4.1",
"prettier": "^2.8.4",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
}
}