forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.3 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": "@mysten/bcs",
"version": "0.4.0",
"description": "BCS - Canonical Binary Serialization implementation for JavaScript",
"license": "Apache-2.0",
"author": "Mysten Labs <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
"build:types": "tsc --build",
"prepublishOnly": "pnpm build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mystenlabs/sui.git"
},
"keywords": [
"bcs",
"libra",
"diem",
"move",
"serialization",
"serde"
],
"bugs": {
"url": "https://github.com/mystenlabs/sui/issues"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 kB"
},
{
"path": "dist/index.mjs",
"limit": "10 kB"
}
],
"homepage": "https://github.com/mystenlabs/sui#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"size-limit": "^7.0.8",
"tsup": "^6.2.2",
"typescript": "^4.8.3",
"vitest": "^0.22.1"
}
}