-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 989 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
43
44
45
46
47
48
49
{
"name": "tanu",
"version": "0.2.0",
"description": "Generate TypeScript types and interfaces using JavaScript or TypeScript code",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "ava",
"test:coverage": "c8 ava"
},
"keywords": [
"typescript",
"compiler api",
"abstraction",
"wrapper",
"tsc",
"generation"
],
"author": "Aries Clark <me@ariesclark.com> (https://ariesclark.com)",
"license": "MIT",
"devDependencies": {
"@ariesclark/eslint-config": "^1.7.2",
"@types/node": "^20.14.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}