bolt/package.json
Sam Vervaeck 2b2d40c4f5 Major restructuring and update to code base
- Created a new VSCode Extension subproject
 - Created a new Bolt CLI subproject
 - Created a new Bolt Language Server subproject
 - Created a new Bolt Compiler subproject
 - Moved most existing code to the new Compiler subproject
 - Added a small language server
 - Laid the foundations for a Hindley-Milner type checker
 - Fixed some bugs and type errors in the compiler
 - Removed the unused testing infrastructure
 - Added an example parser test that should be run with Ava
2020-11-15 09:57:25 +01:00

39 lines
1.2 KiB
JSON

{
"name": "bolt-workspace",
"version": "1.0.0",
"private": true,
"description": "The root workspace for building various Bolt language tools",
"workspaces": [
"@boltlang/compiler",
"@boltlang/langserver",
"@boltlang/cli",
"vscode-extension"
],
"scripts": {
"test": "concurrently --names compiler 'cd @boltlang/compiler && npm test'",
"watch": "concurrently --names compiler,langserver,cli,vscode 'cd @boltlang/compiler && npm run watch' 'cd @boltlang/langserver && npm run watch' 'cd @boltlang/cli && npm run watch' 'cd vscode-extension && npm run watch'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samvv/BoltJS.git"
},
"author": "Sam Vervaeck",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/samvv/BoltJS/issues"
},
"homepage": "https://github.com/samvv/BoltJS#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/node": "^14.14.7",
"ava": "^3.13.0",
"babel-loader": "^8.2.1",
"concurrently": "^5.3.0",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}