-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 766 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 766 Bytes
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
{
"name": "@alessiodf/core-chameleon",
"description": "Core Chameleon for ARK Core",
"version": "0.0.6",
"contributors": [
"alessiodf <alessiodf@pm.me>"
],
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"build": "yarn clean && yarn compile",
"clean": "del dist"
},
"dependencies": {
"agent-base": "^6.0.0",
"socks": "^2.3.3"
},
"devDependencies": {
"@arkecosystem/core": "^2.6.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": false
}
}