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
|
{
"name": "ts-types-lang",
"version": "0.0.2",
"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": {
"tsr": "./bin.js"
},
"scripts": {
"build": "tsc",
"cli": "ts-node src/index.ts",
"docs": "typedoc --plugin typedoc-plugin-markdown ./stdlib/*.ts",
"format": "prettier --write ./**/*.ts",
"postinstall": "yarn build",
"prepublish": "yarn build"
},
"dependencies": {
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"commander": "^9.5.0",
"ts-morph": "^17.0.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0"
}
}
|