squiggle/packages/vscode-ext/package.json

147 lines
4.1 KiB
JSON
Raw Normal View History

{
"name": "vscode-squiggle",
"displayName": "Squiggle",
"description": "Squiggle language support",
2022-06-18 18:39:23 +00:00
"license": "MIT",
2022-07-30 20:53:59 +00:00
"version": "0.3.1",
2022-06-18 20:56:05 +00:00
"publisher": "QURI",
2022-06-18 18:39:23 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/quantified-uncertainty/squiggle.git"
},
2022-06-18 20:56:05 +00:00
"icon": "media/vendor/icon.png",
"engines": {
2022-07-27 20:03:41 +00:00
"vscode": "^1.69.0"
},
"categories": [
2022-06-18 20:56:05 +00:00
"Programming Languages",
"Visualization"
],
"activationEvents": [
"onLanguage:squiggle",
2022-06-20 14:38:45 +00:00
"onCustomEditor:squiggle.wysiwyg",
"onCommand:squiggle.preview"
],
"main": "./client/out/extension.js",
"contributes": {
2022-06-20 14:38:45 +00:00
"languages": [
{
"id": "squiggle",
"extensions": [
".squiggle"
],
"aliases": [
"Squiggle"
2022-06-20 21:26:16 +00:00
],
"configuration": "./language-configuration.json"
2022-06-20 21:46:12 +00:00
},
{
"id": "squiggleU",
"extensions": [
".squiggleU"
],
"aliases": [
"SquiggleU"
],
"configuration": "./language-configuration.json"
2022-06-20 14:38:45 +00:00
}
],
"grammars": [
{
"language": "squiggle",
"scopeName": "source.squiggle",
2022-06-20 21:46:12 +00:00
"path": "./syntaxes/squiggle.tmLanguage.json"
},
{
"language": "squiggleU",
"scopeName": "source.squiggle",
"path": "./syntaxes/squiggle.tmLanguage.json"
}
],
"customEditors": [
{
"viewType": "squiggle.wysiwyg",
"displayName": "Squiggle WYSIWYG",
"selector": [
{
"filenamePattern": "*.squiggle"
}
],
2022-06-20 14:38:45 +00:00
"priority": "option"
}
],
2022-06-20 14:38:45 +00:00
"commands": [
{
"command": "squiggle.preview",
"title": "Open Preview",
"category": "Squiggle",
"when": "editorLangId == squiggle",
"icon": "$(open-preview)"
}
],
"menus": {
"editor/title": [
{
"command": "squiggle.preview",
"when": "editorLangId == squiggle",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "squiggle.preview",
"when": "editorLangId == squiggle"
}
]
},
"keybindings": [
{
"command": "squiggle.preview",
"key": "ctrl+k v",
"mac": "cmd+k v",
"when": "editorLangId == squiggle"
}
2022-06-20 15:06:30 +00:00
],
"configuration": {
"title": "Squiggle",
"properties": {
"squiggle.playground.showSummary": {
"type": "boolean",
"default": false,
"description": "Whether to show the summary table in the playground"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
2022-06-23 07:35:42 +00:00
"compile:tsc": "tsc -b",
"compile:grammar": "js-yaml syntaxes/squiggle.tmLanguage.yaml >syntaxes/squiggle.tmLanguage.json",
2022-07-29 19:12:13 +00:00
"compile:vendor": "(cd ../squiggle-lang && yarn run build) && (cd ../components && yarn run bundle && yarn run build:css) && mkdir -p media/vendor && cp ../components/dist/bundle.js media/vendor/components.js && cp ../components/dist/main.css media/vendor/components.css && cp ../../node_modules/react/umd/react.production.min.js media/vendor/react.js && cp ../../node_modules/react-dom/umd/react-dom.production.min.js media/vendor/react-dom.js && cp ../website/static/img/squiggle-logo.png media/vendor/icon.png",
2022-06-23 09:00:12 +00:00
"compile": "yarn run compile:vendor && yarn run compile:grammar && yarn run compile:tsc",
2022-06-23 07:35:42 +00:00
"watch": "tsc -b -watch",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint client/src server/src --ext ts",
"format": "eslint client/src server/src --ext ts --fix",
"package": "npx vsce package --yarn"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "18.x",
"@types/vscode": "^1.69.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.21.0",
"glob": "^8.0.3",
2022-06-20 21:43:50 +00:00
"js-yaml": "^4.1.0",
"typescript": "^4.7.4",
"vsce-yarn-patch": "^1.66.2"
},
"dependencies": {
"vscode-languageclient": "^8.0.2",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.5",
"@quri/squiggle-lang": "^0.2.11"
}
}