-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@coreplane/polylane",
"version": "0.2.42",
"description": "Agent-focused CLI for the Polylane platform",
"keywords": [
"polylane",
"cli",
"agent",
"observability",
"incident-response",
"devops"
],
"homepage": "https://polylane.com",
"repository": {
"type": "git",
"url": "https://github.com/coreplanelabs/cli.git"
},
"bugs": {
"url": "https://github.com/coreplanelabs/cli/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"polylane": "dist/polylane.mjs"
},
"files": [
"dist/polylane.mjs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node --env-file-if-exists=.env.local --import tsx src/main.ts",
"codegen": "node --import tsx codegen/index.ts",
"build": "node --import tsx build.ts",
"pretypecheck": "npm run codegen",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ codegen/",
"test": "node --test --experimental-test-module-mocks --import tsx test/*.test.ts",
"test:watch": "node --test --watch --experimental-test-module-mocks --import tsx test/*.test.ts"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"jsonc-parser": "^3.3.1",
"ws": "^8.21.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.25.0",
"eslint": "^9.0.0",
"tsx": "^4.23.1",
"typescript": "^5.8.0",
"typescript-eslint": "^8.0.0"
}
}