-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "@sounisi5011/ts-type-util-is-readonly-array",
"version": "1.0.2",
"description": "Fix the type definition of `Array.isArray()` method to accept readonly arrays",
"keywords": [
"ReadonlyArray",
"array",
"isArray",
"isReadonlyArray",
"readonly",
"ts",
"types",
"typescript",
"util",
"utility"
],
"homepage": "https://github.com/sounisi5011/npm-packages/tree/main/packages/ts-type-utils/is-readonly-array#readme",
"bugs": {
"url": "https://github.com/sounisi5011/npm-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sounisi5011/npm-packages.git",
"directory": "packages/ts-type-utils/is-readonly-array"
},
"license": "MIT",
"author": "sounisi5011",
"exports": {
".": {
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./index.d.ts",
"files": [
"/CHANGELOG.md",
"index.d.ts"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"build-with-cache": "../../../scripts/fixed-turbo-run.sh build",
"lint:tsc": "tsc --noEmit",
"test": "run-s build-with-cache test:tsd",
"test:tsd": "tsd"
},
"devDependencies": {
"tsd": "0.25.0",
"turbo": "1.8.2",
"typescript": "4.9.4"
}
}