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
|
{
"name": "ts-types-lang",
"version": "0.0.1",
"description": "A runtime for typescript types",
"main": "stdlib/index.ts",
"repository": "https://github.com/phenax/ts-types-runtime-environment",
"author": "Akshay Nair <phenax5@gmail.com>",
"license": "MIT",
"bin": "./dist/index.js",
"scripts": {
"build": "tsc",
"postinstall": "yarn build",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"ts-morph": "^17.0.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"ts-node": "^10.9.1"
}
}
|