-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.78 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
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
{
"name": "tsd",
"version": "0.27.0",
"description": "Check TypeScript type definitions",
"license": "MIT",
"repository": "SamVerschueren/tsd",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com",
"url": "https://github.com/SamVerschueren"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"engines": {
"node": ">=14.16"
},
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run build && cpy \"./**/**\" \"../../../dist/test/fixtures/\" --parents --cwd=source/test/fixtures",
"test": "npm run lint && ava",
"build": "npm run clean && tsc --project tsconfig.tsd.json && chmod +x dist/cli.js",
"clean": "del-cli dist",
"lint": "eslint \"source/**/*\"",
"lint:fix": "eslint --fix \"source/**/*\""
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/test/**/*"
],
"keywords": [
"typescript",
"tsd",
"check",
"typings",
"types",
"typedefs",
"typedefinitions"
],
"dependencies": {
"@tsd/typescript": "~4.9.5",
"eslint-formatter-pretty": "^4.1.0",
"globby": "^11.0.1",
"meow": "^9.0.0",
"path-exists": "^4.0.0",
"read-pkg-up": "^7.0.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^14.18.21",
"@types/react": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"ava": "^3.8.2",
"cpy-cli": "^3.0.0",
"del-cli": "^3.0.0",
"eslint": "^7.27.0",
"eslint-config-xo": "^0.36.0",
"eslint-config-xo-typescript": "^0.41.1",
"execa": "^5.0.0",
"react": "^16.9.0",
"rxjs": "^6.5.3",
"typescript": "~4.9.5"
},
"ava": {
"timeout": "2m",
"files": [
"source/test/**/*",
"!source/test/fixtures/**/*"
],
"typescript": {
"rewritePaths": {
"source/": "dist/"
}
}
}
}