-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.23 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
{
"name": "smartc-signum-simulator",
"version": "3.1.0-alpha",
"description": "Smart contracts simulator and debugger for Signum Blockchain",
"author": "deleterium",
"contributors": [
"ohager"
],
"main": "./dist/index.js",
"private": true,
"homepage": "https://github.com/deleterium/SC-Simulator",
"scripts": {
"dev": "TARGET=dev node esbuild.config.js && npx light-server -s . -p 7000 --no-reload",
"start": "npx light-server -s . -p 7000 --no-reload",
"lint": "npx eslint try.js src/*.ts",
"build": "npm run lint && node esbuild.config.js",
"build:pkg": "npm run lint && npx rimraf ./dist && npx tsc -p tsconfig.pkg.json",
"pack:pkg": "npm run build:pkg && npm pack",
"publish:pkg": "npm run build:pkg && npm publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"light-server": "^2.9.1",
"rimraf": "^5.0.1",
"smartc-assembly-highlight": "^1.1.1",
"smartc-signum-compiler": "^9999.9.4",
"typescript": "^5.2.2"
}
}