-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.23 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": "@trufflehq/cli",
"version": "0.6.1",
"description": "The Truffle Developer Platform CLI",
"main": "dist/cli.mjs",
"bin": {
"truffle-cli": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./src/types/app-config.ts",
"build": "npm run clean && npm run prebuild-scripts && tsup",
"watch": "swc ./src --out-dir ./dist -C jsc.experimental.keepImportAssertions=true --watch",
"format": "eslint --fix --ext .ts,.js src",
"package:linux": "pkg /tmp/tfl --targets node18-linux-x64 --output bin/linux/truffle-cli",
"package:macos": "pkg /tmp/tfl --targets node18-macos-x64 --output bin/macos/truffle-cli",
"test": "vitest run",
"generate:types": "ts-node ./scripts/generate-types.ts",
"prebuild-scripts": "for file in ./scripts/*; do npx ts-node $file; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trufflehq/truffle-cli.git"
},
"author": "Truffle",
"license": "MIT",
"bugs": {
"url": "https://github.com/trufflehq/truffle-cli/issues"
},
"homepage": "https://github.com/trufflehq/truffle-cli#readme",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"joi": "^17.12.2",
"lodash": "^4.17.21",
"node-fetch": "^2",
"readline-sync": "^1.4.10",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.2",
"@types/readline-sync": "^1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"joi-to-typescript": "^4.12.0",
"pkg": "^5.8.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^4.7.4",
"vitest": "^1.3.1"
},
"resolutions": {
"clean-stack": "3.0.1",
"indent-string": "4.0.0"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.7.0",
"yarn": "1.22.19"
},
"packageManager": "yarn@3.3.0"
}