-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
125 lines (125 loc) · 4.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "polywrap",
"description": "Polywrap CLI",
"version": "0.11.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/monorepo.git"
},
"files": [
"build",
"bin",
"lang"
],
"bin": {
"polywrap": "bin/polywrap"
},
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"build": "yarn build:intl && yarn build:fast",
"build:fast": "rimraf ./build && tsc --project tsconfig.build.json && yarn build:build-strategies && yarn build:deploy-modules && yarn build:infra-modules",
"build:build-strategies": "ts-node ./scripts/copyfiles ./src/lib/defaults/build-strategies ./build/lib/defaults/build-strategies",
"build:deploy-modules": "copyfiles ./src/lib/defaults/deploy-modules/**/polywrap.deploy.ext.json ./build/lib/defaults/deploy-modules -u 4",
"build:infra-modules": "ts-node ./scripts/copyfiles ./src/lib/defaults/infra-modules ./build/lib/defaults/infra-modules",
"build:intl": "ts-node ./scripts/generateIntlTypes.ts",
"install:tracer": "ts-node ./scripts/installTracerInfraModule.ts",
"lint": "eslint --color -c ../../.eslintrc.js .",
"test": "yarn test:unit && yarn test:e2e:p1 && yarn test:e2e:p2",
"test:cmd": "jest --passWithNoTests --runInBand --verbose --forceExit",
"test:unit": "yarn test:cmd -- ./src/__tests__/unit/**/*.spec.ts",
"test:e2e:p1": "yarn test:cmd -- ./src/__tests__/e2e/p1/*.spec.ts",
"test:e2e:p2": "yarn test:cmd -- ./src/__tests__/e2e/p2/*.spec.ts",
"test:rust": "yarn test:cmd -- --config ./jest.rs.config.js",
"test:golang": "yarn test:cmd -- --config ./jest.go.config.js",
"test:watch": "yarn test -- --watch",
"test:pkg": "PKG_CLI=true yarn test:e2e:p1 && yarn test:e2e:p2",
"pkg:dev": "pkg . --compress GZip"
},
"resolutions": {
"colors": "1.4.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "9.0.9",
"@ethersproject/providers": "5.6.8",
"@ethersproject/wallet": "5.6.2",
"@formatjs/intl": "1.8.2",
"@polywrap/asyncify-js": "~0.12.0",
"@polywrap/client-config-builder-js": "~0.12.0",
"@polywrap/client-js": "~0.12.0",
"@polywrap/core-js": "~0.12.0",
"@polywrap/ethereum-wallet-js": "~0.1.0",
"@polywrap/logging-js": "0.11.3",
"@polywrap/os-js": "0.11.3",
"@polywrap/polywrap-manifest-types-js": "0.11.3",
"@polywrap/result": "~0.12.0",
"@polywrap/schema-bind": "0.11.3",
"@polywrap/schema-compose": "0.11.3",
"@polywrap/schema-parse": "0.11.3",
"@polywrap/sys-config-bundle-js": "~0.12.0",
"@polywrap/uri-resolver-extensions-js": "~0.12.0",
"@polywrap/uri-resolvers-js": "~0.12.0",
"@polywrap/wasm-js": "~0.12.0",
"@polywrap/web3-config-bundle-js": "~0.12.0",
"@polywrap/wrap-manifest-types-js": "~0.12.0",
"axios": "0.21.2",
"chalk": "4.1.0",
"chokidar": "3.5.1",
"commander": "9.2.0",
"content-hash": "2.5.2",
"copyfiles": "2.4.1",
"docker-compose": "0.23.17",
"extract-zip": "2.0.1",
"form-data": "4.0.0",
"fs-extra": "9.0.1",
"json-schema": "0.4.0",
"jsonschema": "1.4.0",
"mustache": "4.0.1",
"os-locale": "5.0.0",
"regex-parser": "2.2.11",
"rimraf": "3.0.2",
"toml": "3.0.0",
"typescript": "4.9.5",
"yaml": "2.2.2",
"yesno": "0.4.0"
},
"devDependencies": {
"@polywrap/cli-js": "0.11.3",
"@types/copyfiles": "2.4.0",
"@types/fs-extra": "9.0.12",
"@types/jest": "26.0.8",
"@types/mustache": "4.0.1",
"@types/node": "18.15.0",
"@types/prettier": "2.6.0",
"@types/rimraf": "3.0.0",
"dir-compare": "3.3.0",
"eslint-plugin-formatjs": "2.12.7",
"jest": "26.6.3",
"ts-jest": "26.5.4",
"ts-morph": "10.0.1",
"ts-node": "10.9.1",
"pkg": "5.8.1"
},
"gitHead": "7346adaf5adb7e6bbb70d9247583e995650d390a",
"publishConfig": {
"access": "public"
},
"pkg": {
"assets": [
"lang/**/*",
"build/lib/defaults/build-strategies/**/*",
"build/lib/defaults/deploy-modules/**/*",
"build/lib/defaults/infra-modules/**/*"
],
"targets": [
"node18-macos-arm64",
"node18-macos-x64",
"node18-linux-arm64",
"node18-linux-x64",
"node18-win-arm64",
"node18-win-x64"
],
"outputPath":"./standalone-binaries"
}
}