-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "expr-lang-support",
"version": "0.5.2",
"description": "Language support for Expr language (https://expr-lang.org)",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:formatter": "npm run build -w packages/formatter",
"build:vscode": "npm run build -w packages/vscode",
"watch:formatter": "npm run watch -w packages/formatter",
"watch:vscode": "npm run watch -w packages/vscode",
"package": "npm run package:formatter && npm run package:vscode",
"package:formatter": "npm run package -w packages/formatter",
"package:vscode": "npm run package -w packages/vscode",
"clean": "rm -rf packages/*/dist packages/*/out packages/*/node_modules node_modules *.tgz *.vsix"
},
"repository": {
"type": "git",
"url": "https://github.com/daangn/expr-lang-support"
},
"keywords": [
"expr",
"formatter",
"syntax",
"highlighting",
"vscode"
],
"author": "",
"license": "MIT",
"devDependencies": {
"typescript": "^5.0.0"
}
}