forked from ceramicstudio/js-glaze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.1 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
{
"name": "@ceramicstudio/idx",
"author": "Ceramic Studio",
"version": "0.1.0",
"license": "(Apache-2.0 OR MIT)",
"main": "dist/index.js",
"module": "dist/idx.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"prepare": "tsdx build"
},
"dependencies": {
"@ceramicnetwork/3id-did-resolver": "^0.3.17",
"dataloader": "^2.0.0",
"did-resolver": "^2.1.1",
"dids": "^0.5.0"
},
"devDependencies": {
"@ceramicnetwork/ceramic-common": "^0.8.2",
"@ceramicstudio/idx-tools": "^0.1.1",
"@types/jest": "^26.0.14",
"eslint-config-3box": "^0.1.2",
"husky": "^4.3.0",
"jest-environment-ceramic": "^0.2.2",
"tsdx": "^0.13.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"testEnvironment": "node"
}
}