forked from ceramicstudio/js-glaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.41 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@glazed/cli",
"description": "Glaze CLI",
"version": "0.2.2",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/ceramicstudio/js-glaze#readme",
"keywords": [
"ceramic",
"glaze",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-glaze",
"directory": "packages/cli"
},
"type": "module",
"bin": {
"glaze": "./bin/run.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"bin",
"dist",
"oclif.manifest.json"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build": "yarn build:clean && yarn build:js",
"lint": "eslint src test --fix",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"test:ci": "yarn test --ci",
"prepare": "yarn build",
"prepack": "oclif manifest",
"prepublishOnly": "package-check"
},
"oclif": {
"commands": "./dist/commands",
"bin": "glaze",
"topics": {
"config": {
"description": "Manage local configuration details."
},
"did": {
"description": "Create and interact with DIDs."
},
"model": {
"description": "Interact with data models."
},
"pin": {
"description": "Interact with Ceramic streams pins."
},
"stream": {
"description": "Interact with Ceramic streams."
},
"tile": {
"description": "Interact with Ceramic Tile streams."
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
]
},
"dependencies": {
"@ceramicnetwork/3id-did-resolver": "^2.1.2",
"@ceramicnetwork/http-client": "^2.2.1",
"@ceramicnetwork/stream-tile": "^2.2.2",
"@ceramicnetwork/streamid": "^2.1.0",
"@glazed/datamodel": "^0.3.0",
"@glazed/devtools": "^0.2.0",
"@glazed/did-datastore": "^0.3.0",
"@oclif/core": "^1.7.0",
"@oclif/plugin-help": "^5.1.11",
"@oclif/plugin-version": "^1.0.4",
"chalk": "^5.0.0",
"cli-table3": "^0.6.0",
"conf": "^10.1.2",
"did-resolver": "^3.2.0",
"dids": "^3.0.0",
"env-paths": "^3.0.0",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.4",
"key-did-provider-ed25519": "^2.0.0",
"key-did-resolver": "^2.0.0",
"listr": "^0.14.3",
"listr-update-renderer": "^0.5.0",
"ora": "^6.1.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@ceramicnetwork/cli": "^2.3.1",
"@ceramicnetwork/common": "^2.2.1",
"@ceramicnetwork/core": "^2.5.1",
"@glazed/types": "^0.2.0",
"@swc-node/register": "^1.5.1",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
"@types/listr": "^0.14.4",
"@types/node": "^17.0.29",
"@types/update-notifier": "^5.1.0",
"ajv": "^8.10.0",
"execa": "^6.0.0",
"jest-dev-server": "^6.0.3",
"oclif": "^3.0.1",
"strip-ansi": "~7.0.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"globalSetup": "<rootDir>/globalSetup.js",
"globalTeardown": "<rootDir>/globalTeardown.js",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}