forked from hyrious/marshal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "@savannstm/marshal",
"version": "0.6.3",
"author": "hyrious <[email protected]>",
"contributors": [
"savannstm <[email protected]>"
],
"description": "Ruby marshal, that can be safely used both in browser and Node.js.",
"license": "MIT",
"repository": "savannstm/marshal",
"keywords": [
"ruby",
"marshal",
"serialize",
"deserialize"
],
"exports": {
"node": {
"import": "./dist/marshal.mjs",
"require": "./dist/marshal.js"
},
"default": "./dist/marshal.mjs"
},
"type": "module",
"module": "./dist/marshal.mjs",
"main": "./dist/marshal.js",
"types": "./dist/marshal.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@hyrious/marshal": "^0.3.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@savannstm/marshal": "^0.6.0",
"@types/bun": "^1.1.6",
"eslint": "^9.9.0",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"tsx": "^4.17.0",
"typescript-eslint": "^8.2.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"scripts": {
"build": "rollup -c",
"test": "npx tsx ./tests/load.ts && npx tsx ./tests/dump.ts",
"test-dev": "npx tsx ./tests-dev/load.ts"
}
}