bolt/compiler/package.json

38 lines
806 B
JSON
Raw Normal View History

{
"name": "@samvv/bolt",
"version": "0.0.1",
"description": "A new programming language for the web",
"main": "lib/index.js",
"bin": {
"bolt": "lib/bin/bolt.js",
"bolt-self": "lib/bin/bolt-self.js"
},
"scripts": {
"test": "node ./lib/bin/bolt-self.js check"
},
"repository": {
"type": "git",
"url": "https://github.com/BoltJS"
},
"keywords": [
"programming-language",
"productivity",
"development",
"performance"
],
"author": "Sam Vervaeck",
"license": "MIT",
"dependencies": {
"@types/which": "^3.0.0",
2023-04-12 22:01:39 +02:00
"commander": "^10.0.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
2023-04-12 22:01:39 +02:00
"tslib": "^2.5.0",
"which": "^3.0.0",
"yagl": "^0.5.1"
},
"devDependencies": {
"@types/node": "^18.15.11"
}
}