-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 4.6 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
{
"name": "local-sandbox",
"version": "1.1.0",
"private": true,
"type": "module",
"description": "",
"workspaces": [
"packages/*"
],
"exports": {
"require": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"postinstall": "patch-package",
"test": "vitest",
"test:e2e": "cross-env TEST_AZURE_E2E=true vitest --testTimeout=20000 --dir=./test/parity",
"test:csharp": "npm run -w @localsandbox/csharp-test test",
"generate:azure": "tsx ./scripts/generate-azure-schema.ts",
"typecheck": "tsc --noEmit",
"format": "eslint --ignore-path .gitignore --fix .",
"preformat": "prettier --write --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore --fix .",
"prelint": "prettier --check --ignore-path .gitignore .",
"dev:cli": "tsx ./scripts/cli.ts",
"dev:cli:watch": "tsx --watch ./scripts/cli.ts",
"dev": "cross-env LOG_LEVEL=debug npm run dev:cli:watch run",
"build": "npm run build:scripts:cjs",
"build:docker": "npm run build:scripts:cjs && cross-env PKG_TARGET=linux-x64 npm run build:cli:localsandbox && mv ./dist/binary/localsandbox ./dist/binary/localsandbox-linux-amd64 && cross-env PKG_TARGET=linux-arm64 npm run build:cli:localsandbox && mv ./dist/binary/localsandbox ./dist/binary/localsandbox-linux-arm64",
"build:esm": "tsup --config ./conf/tsup.esm.config.ts && resolve-tspaths --out ./dist/esm && shx cp ./conf/package.esm.json ./dist/esm/package.json",
"build:cjs": "tsup --config ./conf/tsup.cjs.config.ts && resolve-tspaths --out ./dist/cjs && shx cp ./conf/package.cjs.json ./dist/cjs/package.json && renamer --find .d.cts --replace .d.ts ./dist/cjs/**/*.d.cts",
"build:scripts:cjs": "tsup --config ./conf/tsup.scripts.cjs.config.ts && shx cp ./conf/package.cli.json ./dist/scripts/cjs/package.json",
"build:cli": "npm run build:scripts:cjs && npm run build:cli:localsandbox && npm run build:cli:azl",
"build:cli:localsandbox": "cross-env-shell pkg ./dist/scripts/cjs --out-path ./dist/binary -t node20-$PKG_TARGET --debug",
"build:cli:azl": "tsx ./scripts/build-azl-go.ts",
"bundle:cli": "npm run build:cli && tsx ./scripts/bundle-cli.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@azure/core-amqp": "^4.3.2",
"@azure/identity": "^4.4.1",
"@commander-js/extra-typings": "^12.1.0",
"@datastructures-js/deque": "^1.0.4",
"@datastructures-js/priority-queue": "^6.3.1",
"@edge-runtime/node-utils": "^3.0.0",
"@edge-runtime/primitives": "^5.1.0",
"@js-temporal/polyfill": "^0.4.4",
"atomically": "^2.0.3",
"commander": "^12.1.0",
"detect-port": "^1.6.1",
"fs-extra": "^11.2.0",
"graceful-fs": "^4.2.11",
"kleur": "^4.1.5",
"lodash.clonedeepwith": "^4.5.0",
"long": "^5.2.3",
"lookpath": "^1.2.2",
"next-route-matcher": "^1.0.2",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"rhea": "^3.0.2",
"rhea-promise": "^3.0.3",
"which": "^4.0.0",
"write-file-atomic": "^5.0.1",
"xdg-app-paths": "^8.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@azure/arm-resources": "^5.2.0",
"@azure/arm-servicebus": "^6.1.0",
"@azure/arm-subscriptions": "^5.1.0",
"@azure/core-client": "^1.9.2",
"@azure/service-bus": "^7.9.5",
"@types/detect-port": "^1.3.5",
"@types/fs-extra": "^11.0.4",
"@types/graceful-fs": "^4.1.9",
"@types/js-string-escape": "^1.0.3",
"@types/lodash.clonedeepwith": "^4.5.9",
"@types/node": "^22.5.4",
"@types/pino": "^7.0.5",
"@types/swagger-schema-official": "^2.0.25",
"@types/which": "^3.0.4",
"@yao-pkg/pkg": "^5.14.2",
"bundle-require": "^5.0.0",
"change-case": "^5.4.4",
"cross-env": "^7.0.3",
"delay": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.3",
"get-port": "^7.1.0",
"it-all": "^3.0.6",
"js-string-escape": "^1.0.1",
"json-schema-to-zod": "^2.4.1",
"openapi3-ts": "^4.3.3",
"ora": "^8.1.0",
"p-memoize": "^7.1.1",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"renamer": "^5.0.2",
"resolve-tspaths": "^0.8.19",
"shx": "^0.3.4",
"tar": "^7.4.3",
"tsup": "^8.2.4",
"tsx": "^4.16.2",
"type-fest": "^4.23.0",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.4"
}
}