-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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
41
{
"name": "@openscout/scout",
"version": "0.2.68",
"description": "Public Scout package that installs the `scout` command and bundled local runtime",
"license": "UNLICENSED",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/arach/openscout.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/arach/openscout/issues"
},
"homepage": "https://github.com/arach/openscout#readme",
"bin": {
"scout": "./bin/scout.mjs"
},
"files": [
"bin",
"dist",
"README.md"
],
"dependencies": {
"picomatch": "^4.0.4"
},
"scripts": {
"build": "npm --prefix ../protocol run build && npm --prefix ../runtime run build && node ./scripts/build.mjs",
"dev": "bun ./src/main.ts",
"test:happy": "node --test test/*.test.mjs",
"prepack": "npm run build && node ../../scripts/prepare-publish-manifest.mjs .",
"postpack": "node ../../scripts/restore-publish-manifest.mjs .",
"postpublish": "node ../../scripts/restore-publish-manifest.mjs ."
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@openscout/runtime": "workspace:*"
}
}