-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
{
"name": "@aeternity/contract-builder",
"version": "0.1.0",
"description": "Sophia smart contracts builder",
"main": "dist/loader.mjs",
"types": "dist/loader.d.ts",
"exports": "./dist/loader.js",
"bin": {
"ae-contract-builder": "dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc && babel src --out-dir dist --extensions .ts --source-maps true",
"commitlint": "commitlint --from develop",
"lint": "prettier . --check && eslint .",
"format": "prettier . --write",
"test": "mocha './test/'",
"test:watch": "mocha './test/' --watch",
"prepare": "npm run build",
"prepublishOnly": "test/examples.sh",
"release": "standard-version --skip.tag"
},
"license": "ISC",
"keywords": [
"aeternity",
"blockchain",
"Sophia",
"smart contracts"
],
"dependencies": {
"@aeternity/aepp-sdk": "^14.0.0",
"@types/lodash-es": "^4.17.12",
"commander": "^12.1.0",
"lodash-es": "^4.17.21",
"schema-utils": "^4.2.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aeternity/contract-builder"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/node": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.9",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"chai": "^5.1.1",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"memfs": "^4.14.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tsx": "^4.19.1",
"typescript": "~5.6",
"typescript-eslint": "^8.10.0"
},
"files": [
"dist",
"src"
],
"browserslist": [
"node >= 14.19"
],
"engines": {
"node": ">=14.19.0"
}
}