-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "@shinkai_protocol/shinkai-typescript-lib",
"version": "0.7.1",
"description": "Typescript library to build and handle Shinkai Messages",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"bundle-tgz": "rm -rf ./dist && tsc && npm pack"
},
"keywords": [],
"author": "Shinkai",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dcSpark/shinkai-typescript-lib.git"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/libsodium-wrappers-sumo": "^0.7.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.1"
},
"dependencies": {
"@noble/curves": "^1.4.2",
"@noble/hashes": "^1.3.2",
"@peculiar/webcrypto": "^1.4.3",
"curve25519-js": "^0.0.4",
"form-data": "^4.0.0",
"libsodium-wrappers-sumo": "^0.7.13",
"tweetnacl": "^1.0.3"
},
"bugs": {
"url": "https://github.com/dcSpark/shinkai-typescript-lib/issues"
},
"homepage": "https://github.com/dcSpark/shinkai-typescript-lib#readme",
"directories": {
"example": "examples",
"test": "tests"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}