-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.11 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.11 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
{
"name": "@fission-codes/client",
"type": "module",
"version": "0.0.1",
"description": "Fission server client.",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"homepage": "https://github.com/fission-codes/stack/tree/main/packages/client",
"repository": {
"url": "fission-codes/stack",
"directory": "packages/client"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./src/index.js"
},
"./types": {
"types": "./dist/src/types.d.ts"
}
},
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/src/index"
],
"./types": [
"dist/src/types"
]
}
},
"files": [
"src",
"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",
"update-msw": "msw init test/mocks/ --save",
"test": "pnpm run test:node && pnpm run test:browser",
"test:node": "playwright-test 'test/**/!(*.browser).test.js' --mode node",
"test:browser": "playwright-test 'test/**/!(*.node).test.js' --assets test/mocks"
},
"dependencies": {
"@fission-codes/ucan": "workspace:^",
"iso-did": "^1.6.0",
"iso-signatures": "^0.3.2",
"iso-web": "^1.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.7.2",
"@types/node": "^20.11.30",
"execa": "^8.0.1",
"iso-websocket": "^0.2.0",
"msw": "^2.3.1",
"p-defer": "^4.0.0",
"playwright-test": "^14.1.1",
"tempy": "^3.1.0",
"testcontainers": "^10.7.2"
},
"publishConfig": {
"provenance": true
},
"eslintConfig": {
"extends": [
"@fission-codes"
],
"env": {
"mocha": true
},
"ignorePatterns": [
"dist",
"test/mocks/mockServiceWorker.js"
]
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"testcontainers"
]
},
"msw": {
"workerDirectory": [
"test/mocks"
]
}
}