-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 Bytes
/
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
{
"name": "rustie",
"version": "0.4.0",
"description": "Helper library to type and safely handle Rust's `serde` JSON serializations of Enums. It can also be used standalone to implement Enums in TypeScript with plain objects.",
"repository": "https://github.com/steinerkelvin/rustie-ts",
"author": "Kelvin Steiner <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"typings",
"rust",
"serde",
"serde-json",
"enum",
"tagged-union",
"algebraic-data-types"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf node_modules dist",
"prepublish": "tsc",
"build": "tsc",
"typecheck": "tsc --noEmit",
"format": "prettier --write ./src",
"format-check": "prettier --check ./src",
"test": "echo \"Error: no test specified\" && true"
},
"devDependencies": {
"prettier": "^3.3.3",
"tsafe": "^1.8.4",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}