forked from Cohesible/synapse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 KB
/
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
30
31
32
33
34
35
36
{
"name": "synapse",
"version": "0.0.11",
"bin": "./src/cli/index.ts",
"dependencies": {
"esbuild": "^0.20.2",
"typescript": "~5.4.5",
"postject": "github:Cohesible/postject"
},
"devDependencies": {
"@types/node": "^20.11.27",
"@cohesible/auth": "file:packages/auth.tgz",
"@cohesible/quotes": "file:packages/quotes.tgz",
"@cohesible/resources": "file:packages/resources.tgz"
},
"engines": {
"node": "22.1.0"
},
"scripts": {
"compileSelf": "synapse compile --no-synth && synapse publish --local",
"testFixtures": "synapse run src/testing/internal.ts -- \"$@\""
},
"synapse": {
"config": {
"exposeInternal": true,
"target": "local"
},
"binaryDependencies": {
"node": "https://github.com/Cohesible/synapse-node-private.git",
"terraform": "https://github.com/Cohesible/synapse-terraform-private.git"
},
"devTools": {
"zig": "0.13.0"
}
}
}