-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.27 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
78
79
80
81
82
83
84
85
86
87
{
"name": "@everywhere-computer/every-cli",
"type": "module",
"version": "0.1.3",
"description": "",
"author": "Fission Team <support@fission.codes>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/everywhere-computer/every-cli"
},
"keywords": [
"cli",
"ec",
"every-cli",
"everywhere-cli",
"everywhere-computer",
"fission"
],
"bin": {
"every": "./cli.js"
},
"scripts": {
"format": "prettier --write '**/*.{js,ts,jsx,tsx,yml,json,css}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,jsx,tsx,yml,json,css}' --ignore-path .gitignore",
"clean": "rm -rf docs node_modules pnpm-lock.yaml dist config",
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 0",
"check": "depcheck"
},
"dependencies": {
"@bytecodealliance/jco": "^1.0.3",
"@bytecodealliance/preview2-shim": "^0.16.0",
"@fission-codes/channel": "^0.0.2",
"@fission-codes/homestar": "^2.3.1",
"@hono/node-server": "^1.8.2",
"@iarna/toml": "^2.2.5",
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"execa": "^8.0.1",
"exit-hook": "^4.0.0",
"file-type": "^19.0.0",
"homestar-runtime": "0.3.0",
"hono": "^4.0.10",
"iso-base": "^3.0.0",
"kubo": "^0.27.0",
"kubo-rpc-client": "^3.0.4",
"listhen": "^1.7.2",
"ora": "^8.0.1",
"p-defer": "^4.0.0",
"sade": "^1.8.1",
"tiged": "^2.12.7",
"ts-json-schema-generator": "^1.5.0"
},
"devDependencies": {
"@fission-codes/eslint-config": "^0.1.0",
"@paulmillr/qr": "^0.1.1",
"@types/degit": "^2.8.6",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.11.26",
"depcheck": "^1.4.7",
"json-schema": "^0.4.0",
"prettier": "^3.2.5",
"typescript": "5.3.3"
},
"prettier": "@fission-codes/eslint-config/prettier.config.js",
"eslintConfig": {
"extends": [
"@fission-codes"
],
"ignorePatterns": [
"dist"
]
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"@bytecodealliance/jco",
"@bytecodealliance/preview2-shim",
"homestar-runtime"
]
}
}