-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 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
37
38
39
40
{
"name": "@yamcs/opi",
"version": "1.3.11",
"description": "OPI Display Renderer",
"author": "Yamcs Team <yamcs@spaceapplications.com>",
"repository": {
"type": "git",
"url": "https://github.com/yamcs/opi.js.git"
},
"homepage": "https://github.com/yamcs/opi.js",
"license": "MIT",
"scripts": {
"build": "node build.mjs",
"postbuild": "tsc --emitDeclarationOnly --declaration --project tsconfig.json --skipLibCheck",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"watch": "esbuild src/index.ts --outfile=dist/opi.js --sourcemap --bundle --platform=browser --format=esm --minify --watch",
"peggy": "cd src/pv/formulas && peggy --format es -o parser.js formula-grammar.peggy",
"start": "node ./demo/server.js",
"prettier:check": "prettier --check '**/*.ts'",
"prettier:write": "prettier --check --write '**/*.ts'"
},
"module": "dist/opi.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@types/node": "^24.1.0",
"esbuild": "^0.28.0",
"esbuild-plugin-copy": "^2.1.1",
"express": "^5.2.1",
"morgan": "^1.10.0",
"nunjucks": "^3.2.2",
"peggy": "5.1.0",
"prettier": "^3.5.3",
"tslib": "^2.6.3",
"typescript": "^6.0.3"
}
}