-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 962 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 962 Bytes
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
{
"name": "msgpack-es",
"version": "0.0.5",
"description": "Excellent ECMAScript MessagePack implementation for 85% of people.",
"author": {
"name": "Sam Claus",
"email": "hello@samcla.us",
"url": "https://samcla.us"
},
"license": "WTFPL",
"keywords": [
"MessagePack",
"serialization",
"deserialization",
"encoding",
"decoding",
"binary",
"JSON"
],
"homepage": "https://samcla.us/projects",
"repository": {
"type": "git",
"url": "git+https://github.com/samclaus/msgpack-es.git"
},
"bugs": "https://github.com/samclaus/msgpack-es/issues",
"scripts": {
"test": "vitest",
"build": "vite build",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0"
},
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist/**/*"
]
}