-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 955 Bytes
/
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
{
"name": "ts-import-transformer",
"version": "1.1.0",
"license": "MIT",
"description": "TypeScript import transformer",
"author": {
"name": "Winton Welsh",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/winton/ts-import-transformer",
"bugs": {
"url": "https://github.com/winton/ts-import-transformer/issues"
},
"homepage": "https://github.com/winton/ts-import-transformer",
"main": "./build/src/index.js",
"files": [
"build/src/index.js",
"README.md",
"package.json"
],
"keywords": [
"typescript",
"import",
"transformer"
],
"scripts": {
"build": "tsc",
"test": "ttsc -p tsconfig.test.json",
"watch": "tsc -w --preserveWatchOutput"
},
"peerDependencies": {
"typescript": ">=4.7.0"
},
"devDependencies": {
"@types/node": "17.0.42",
"ttypescript": "1.5.13",
"typescript": "4.7.3"
}
}