From 2a0815eeb378b0140ef2885514715fb00db7a11e Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 7 Jan 2023 00:53:23 +0530 Subject: refactor: moves stdlib around + package stuff --- package.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'package.json') 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 ", "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" } } -- cgit v1.3.1