-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"author": "Richard Moore <me@ricmoo.com>",
"bin": {
"soler": "./lib.esm/soler.js"
},
"bugs": {
"url": "https://github.com/ethers-io/soler/issues"
},
"dependencies": {
"@ricmoo/cli": "0.0.2",
"@ricmoo/solidity": "0.0.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.2"
},
"description": "Command-Line tool for compiling Solidity.",
"exports": {
".": {
"import": "./lib.esm/index.js",
"default": "./lib.commonjs/index.js"
}
},
"homepage": "https://github.com/ethers-io/soler#readme",
"keywords": [
"solidity",
"compiler"
],
"license": "MIT",
"main": "./lib.commonjs/index.js",
"module": "./lib.esm/index.js",
"name": "soler",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ethers-io/soler.git"
},
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --project tsconfig.esm.json",
"build-clean": "npm run clean && npm run build && chmod 755 lib.esm/soler.js",
"clean": "rm -rf lib.esm && cp -r misc/basedirs/* .",
"prepack": "npm run build-clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"type": "module",
"version": "0.0.2"
}