-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "@zer0-os/zapp-scripts",
"version": "0.0.3",
"description": "zApp Scripts",
"repository": "https://github.com/zer0-os/zApp-scripts",
"license": "UNLICENSED",
"main": "./dist/tsc/cli.js",
"types": "./dist/tsc/cli.d.ts",
"browser": "./dist/esbuild/browser.js",
"bin": {
"build-zos": "./dist/esbuild/cli.js"
},
"scripts": {
"cli": "ts-node src/cli.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf dist build package",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "yarn build-all",
"build-all": "yarn clean && yarn build && yarn esbuild-node",
"esbuild-node": "esbuild src/cli.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/esbuild/cli.js",
"esbuild-node:dev": "esbuild src/cli.ts --bundle --platform=node --sourcemap=external --outfile=dist/esbuild/cli.js",
"esbuild-node:watch": "esbuild src/cli.ts --bundle --platform=node --watch --sourcemap=external --outfile=dist/esbuild/cli.js"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"esbuild": "^0.15.15",
"eslint": "^8.28.0",
"jest": "29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"dependencies": {
"zx": "^7.1.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}