diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-07 00:53:23 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-07 00:53:23 +0530 |
| commit | 2a0815eeb378b0140ef2885514715fb00db7a11e (patch) | |
| tree | 6e1c2e2e86269bae4a36f8ffac32d58ca5c6507c /package.json | |
| parent | d5d685253568f8c6855dd873ac3623e0af642d54 (diff) | |
| download | ts-types-lang-2a0815eeb378b0140ef2885514715fb00db7a11e.tar.gz ts-types-lang-2a0815eeb378b0140ef2885514715fb00db7a11e.zip | |
refactor: moves stdlib around + package stuff
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/package.json b/package.json index 1f98a54..6b5ebab 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,28 @@ { - "name": "typeslang", + "name": "ts-types-lang", "version": "0.0.0", - "description": "__", - "main": "__", - "repository": "__", + "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": "./dist/index.js" + }, "scripts": { - "runtime": "ts-node src/runtime.ts", - "watch": "nodemon --exec 'clear && yarn runtime' -e .ts" + "build": "tsc", + "postinstall": "yarn build", + "dev": "ts-node src/index.ts" }, "dependencies": { "ts-morph": "^17.0.1", - "ts-node": "^10.9.1", "typescript": "^4.9.4", "uuid": "^9.0.0" }, "devDependencies": { "@types/node": "^18.11.18", "@types/uuid": "^9.0.0", - "nodemon": "^2.0.20" + "ts-node": "^10.9.1", + "ts-types-lang": "^0.0.0" } } |
