-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 917 Bytes
/
package.json
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
{
"name": "cosmo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"editors/vscode"
],
"scripts": {
"console": "sbt run",
"compile": "sbt fullLinkJS",
"test": "sbt test",
"watch": "sbt ~fullLinkJS",
"watch:test": "sbt ~test",
"compile:dev": "sbt fastLinkJS",
"cosmo": "node ./cmd/cosmo/main.js",
"docs": "shiroa serve --font-path ./assets/typst-fonts/ --font-path ./assets/fonts/ -w . docs/cosmo",
"build:syntax": "cd editors/vscode && yarn build:syntax",
"build:vscode": "cd editors/vscode && yarn build:syntax && yarn package",
"local:vscode": "yarn build:vscode && code --install-extension editors/vscode/cosmo-0.1.0.vsix"
},
"devDependencies": {
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"ovsx": "^0.8.3"
}
}