-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "@3id/connect-display",
"version": "0.4.1",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/ceramicstudio/js-3id#readme",
"keywords": [
"3id",
"connect"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-3id",
"directory": "packages/connect-display"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"lint": "eslint src test --fix",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"test:ci": "yarn test --ci --coverage",
"test:server": "rm -rf ./test/data && ../../node_modules/.bin/ceramic daemon --port 7777 --state-store-directory ./test/data --network inmemory",
"prepare": "yarn build",
"prepublishOnly": "package-check"
},
"dependencies": {
"@ceramicnetwork/rpc-window": "^0.6.0",
"@ceramicnetwork/transport-postmessage": "^0.6.0",
"rxjs": "^7.5.2"
},
"devDependencies": {
"@ceramicnetwork/transport-subject": "^0.6.0",
"rpc-utils": "^0.6.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}