-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "@hyrious/marshal",
"version": "0.3.3",
"description": "Ruby marshal for the browser and node.js",
"author": "hyrious <hyrious@outlook.com>",
"license": "MIT",
"repository": "hyrious/marshal",
"keywords": [
"ruby",
"marshal",
"serialize"
],
"exports": {
"node": {
"import": "./dist/marshal.mjs",
"require": "./dist/marshal.js"
},
"default": "./dist/marshal.mjs"
},
"main": "dist/marshal.js",
"module": "dist/marshal.mjs",
"unpkg": "dist/marshal.iife.js",
"jsdelivr": "dist/marshal.iife.js",
"types": "dist/marshal.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"build": "esbuild-dev scripts/build.ts",
"test": "c8 -n=src -r=text -r=html esbuild-dev --no-warnings --loader test/index.ts"
},
"devDependencies": {
"@hyrious/configs": "^0.1.3",
"@hyrious/dts": "^0.3.0",
"@hyrious/esbuild-dev": "^0.10.11",
"@types/node": "^20.17.12",
"c8": "^10.1.3",
"esbuild": "^0.24.2",
"is-plain-obj": "^4.1.0",
"pretty-bytes": "^6.1.1",
"rollup": "^4.30.1",
"typescript": "^5.7.3",
"uvu": "^0.5.6"
}
}