-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@sounisi5011/ts-type-util-has-own-property",
"version": "1.0.3",
"description": "Fix the type definition of the `Object.prototype.hasOwnProperty()` method",
"keywords": [
"hasOwnProperty",
"hasProperty",
"property",
"ts",
"types",
"typescript",
"util",
"utility"
],
"homepage": "https://github.com/sounisi5011/npm-packages/tree/main/packages/ts-type-utils/has-own-property#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/has-own-property"
},
"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"
}
}