-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.13 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.13 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
{
"name": "echos-copilot-template",
"version": "1.0.0",
"description": "Template for integrating Echo Protocol with GitHub Copilot",
"main": "scripts/build/index.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npx ts-node scripts/build/index.ts",
"build:copilot": "npx ts-node scripts/build/index.ts --copilot",
"build:instructions": "npx ts-node scripts/build/index.ts --individual",
"build:watch": "nodemon --exec 'npx ts-node scripts/build/index.ts'",
"dev": "npm run build && npm run build:watch",
"test": "npm run test:bats && npm run test:jest",
"test:bats": "npm run test:bats:edge && npm run test:bats:installer && npm run test:bats:integration && npm run test:bats:quick",
"test:bats:edge": "bats tests/bats/install-edge-cases.bats",
"test:bats:installer": "bats tests/bats/install-sh.bats tests/bats/install-local-sh.bats tests/bats/install-ps1.bats",
"test:bats:integration": "bats tests/bats/install-cross-platform.bats",
"test:bats:unit": "echo 'No unit tests defined for shell scripts' && exit 0",
"test:bats:quick": "bats tests/bats/install-sh.bats tests/bats/install-local-sh.bats",
"test:bats:verbose": "bats --verbose tests/bats",
"validate:prs": "npx ts-node scripts/validate-prs-yaml.ts",
"test:jest": "jest",
"test:jest:edge": "jest tests/build/build.edge-cases.test.ts",
"test:jest:integration": "jest tests/build/integration.test.ts",
"test:jest:regression": "jest tests/build/regression.test.ts"
},
"dependencies": {
"js-yaml": "^4.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.30",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"keywords": [
"echo-protocol",
"github-copilot",
"ai-assistant",
"structured-reasoning"
],
"author": "",
"license": "MIT",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}