-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "@ton-community/contract-verifier-sdk",
"version": "1.3.1",
"description": "TON verifier SDK - sources fetcher + code viewer for FunC with code highlighting ",
"exports": {
"node": "./lib/index.js",
"import": "./dist/index.min.js"
},
"types": "lib/web.d.ts",
"files": [
"lib/**/**",
"dist/index.min.js"
],
"scripts": {
"start": "webpack-dev-server --hot",
"npm-publish": "npm publish --access=public",
"cleanup": "rimraf ./lib",
"build:web:min": "node build.js",
"build:web": "rimraf ./dist && npm run build:web:min",
"build": "npm run lint && rimraf ./lib && tsc && npm run build:web",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "npx tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"test": ""
},
"repository": {
"type": "git",
"url": "https://github.com/ton-community/contract-verifier-sdk"
},
"bugs": {
"url": "https://github.com/ton-community/contract-verifier-sdk/issues"
},
"author": "Shahar Yakir",
"license": "MIT",
"homepage": "https://github.com/ton-community/contract-verifier-sdk",
"keywords": [
"ton",
"source",
"verifier",
"widget",
"sources"
],
"dependencies": {
"@aws-crypto/sha256-js": "^2.0.2",
"@orbs-network/ton-access": "^2.3.3",
"highlight.js": "11.6.0",
"highlightjs-func": "github:orbs-network/highlightjs-func",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"ton": "^13.4.1",
"ton-core": "^0.48.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"esbuild": "^0.16.16",
"esbuild-plugin-polyfill-node": "^0.1.3",
"eslint": "^8.31.0",
"source-map-explorer": "^2.5.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"engines": {
"node": ">=14.16"
}
}