-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.07 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.07 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@fission-codes/homestar",
"type": "module",
"version": "2.4.0",
"description": "Homestar Client.",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"homepage": "https://github.com/fission-codes/stack/tree/main/packages/homestar",
"repository": {
"url": "fission-codes/stack",
"directory": "packages/homestar"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./src/index.js"
},
"./workflow": {
"types": "./dist/src/workflow/index.d.ts",
"default": "./src/workflow/index.js"
},
"./wasmify": {
"types": "./dist/src/wasmify/index.d.ts",
"default": "./src/wasmify/index.js"
},
"./types": {
"types": "./dist/src/types.d.ts"
}
},
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/src/index"
],
"workflow": [
"dist/src/workflow/index"
],
"wasmify": [
"dist/src/wasmify/index"
],
"types": [
"dist/src/types"
]
}
},
"files": [
"src",
"dist/src/workflow/*.d.ts",
"dist/src/workflow/*.d.ts.map",
"dist/src/wasmify/*.d.ts",
"dist/src/wasmify/*.d.ts.map",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"build": "tsc --build",
"test": "pnpm run test:node && pnpm run test:browser",
"test:node": "playwright-test 'test/**/!(*.browser).test.js' --mode node --assets test/fixtures",
"test:browser": "playwright-test 'test/**/!(*.node).test.js' --assets test/fixtures"
},
"dependencies": {
"@bytecodealliance/componentize-js": "^0.7.1",
"@fission-codes/channel": "workspace:^",
"@fission-codes/homestar-wit": "workspace:^",
"@ipld/dag-cbor": "^9.2.0",
"@ipld/dag-json": "^10.2.0",
"@multiformats/sha3": "^3.0.2",
"@ts-ast-parser/core": "^0.8.0",
"del": "^7.1.0",
"emittery": "^1.0.3",
"esbuild": "^0.20.1",
"esbuild-plugin-replace-regex": "^0.0.2",
"get-tsconfig": "^4.7.3",
"iso-base": "^4.0.0",
"just-kebab-case": "^4.2.0",
"multiformats": "^13.1.0",
"object-path": "^0.11.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/get-value": "^3.0.5",
"@types/json-templates": "^3.0.3",
"@types/node": "^20.11.26",
"@types/object-path": "^0.11.4",
"execa": "^8.0.1",
"homestar-runtime": "rc",
"kubo-rpc-client": "^3.0.4",
"p-defer": "^4.0.0",
"playwright-test": "^14.1.1",
"tempy": "^3.1.0",
"testcontainers": "^10.7.2",
"type-fest": "^4.14.0",
"unws": "^0.2.4",
"ws": "^8.16.0"
},
"publishConfig": {
"provenance": true
},
"eslintConfig": {
"extends": [
"@fission-codes"
],
"env": {
"mocha": true
},
"ignorePatterns": [
"dist"
]
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"hd-scripts",
"assert",
"homestar-runtime"
]
}
}