-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "pullToPoints",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"description": "",
"scripts": {
"build:clean": "rimraf dist",
"build:js": "swc src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc --project tsconfig.json --emitDeclarationOnly --skipLibCheck",
"build": "pnpm build:clean && pnpm build:types && pnpm build:js",
"clean": "rimraf node_modules dist",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node dist/index.js",
"debug": "node --inspect dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ceramicnetwork/http-client": "^5.6.0",
"@composedb/types": "^0.7.1",
"@ceramic-solutions/key-did": "^0.1.0",
"@ceramic-solutions/points": "^0.1.1",
"@didtools/codecs": "^3.0.0",
"@types/config": "^3.3.4",
"axios": "^1.6.8",
"config": "^3.3.11",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ipfs-core-types": "^0.14.1",
"swc": "^1.0.11",
"ts-essentials": "^9.4.2",
"uint8arrays": "^5.0.3"
},
"devDependencies": {
"@composedb/client": "^0.7.1",
"@composedb/devtools": "^0.7.1",
"@composedb/devtools-node": "^0.7.1",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.12",
"@swc/jest": "^0.2.36",
"@types/express": "^4.17.21",
"@types/node": "^20.12.6",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}