-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.85 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.85 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
{
"name": "@scramjet/middleware-api-client",
"version": "0.20.0",
"description": "Scramjet Middleware API Client",
"main": "src/index.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && yarn build:browser:iife && yarn build:browser:esm && yarn build:browser:cjs",
"build:browser:iife": "esbuild ./src/index.ts --outfile=dist/bundle/mw-api-client.js --bundle --tsconfig=tsconfig.build.json --format=iife --global-name=SCPClient",
"build:browser:cjs": "esbuild ./src/index.ts --outfile=dist/bundle/mw-api-client.cjs.js --bundle --tsconfig=tsconfig.build.json --format=cjs",
"build:browser:esm": "esbuild ./src/index.ts --outfile=dist/bundle/mw-api-client.esm.js --bundle --tsconfig=tsconfig.build.json --format=esm",
"clean": "rm -rf ./dist .bic_cache",
"watch": "tsc -b --watch",
"test": "npm run test:ava",
"test:ava": "ava",
"prepack": "node ../../scripts/publish.js",
"postbuild": "yarn prepack"
},
"dependencies": {
"@scramjet/api-client": "^0.20.0",
"@scramjet/client-utils": "^0.20.0",
"@scramjet/manager-api-client": "^0.20.0",
"@scramjet/multi-manager-api-client": "^0.20.0"
},
"devDependencies": {
"@scramjet/types": "^0.20.0",
"ava": "^3.15.0",
"esbuild": "0.14.29",
"ts-node": "^10.7.0",
"typedoc": "^0.22.12",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"**/*.spec.ts"
],
"require": [
"ts-node/register"
]
},
"author": "Scramjet <open-source@scramjet.org>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/scramjetorg/scramjet-cpm-dev.git"
}
}