-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cashc",
"version": "0.12.1",
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
"keywords": [
"bitcoin",
"bitcoin cash",
"cashscript",
"compiler",
"smart contracts",
"cashtokens"
],
"homepage": "https://cashscript.org",
"bugs": {
"url": "https://github.com/CashScript/cashscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CashScript/cashscript.git"
},
"license": "MIT",
"author": "Rosco Kalis <roscokalis@gmail.com>",
"contributors": [
"Mathieu Geukens <mr-zwets@protonmail.com>",
"Gabriel Cardona <gabriel@bitcoin.com>"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"bin": {
"cashc": "dist/cashc-cli.js"
},
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"antlr": "antlr -Dlanguage=TypeScript -visitor -no-listener src/grammar/CashScript.g4",
"postantlr": "find src/grammar -type f -name 'CashScriptVisitor.ts' | xargs sed -i '' 's|\\(import .* \".*/.*\\)\";|\\1\\.js\";|g'",
"build": "yarn clean && yarn compile",
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"test": "vitest run"
},
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.8",
"@cashscript/utils": "^0.12.1",
"antlr4": "^4.13.2",
"commander": "^14.0.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@types/node": "^22.17.0",
"@types/semver": "^7.7.0",
"@vitest/coverage-v8": "^4.0.15",
"cpy-cli": "^5.0.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.31.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"url-join": "^5.0.0",
"vitest": "^4.0.15"
},
"gitHead": "bf02a4b641d5d03c035d052247a545109c17b708"
}