-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.64 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
61
62
63
64
65
66
67
{
"name": "@puffmeow/rusty-schema2ts",
"version": "0.3.0",
"main": "index.js",
"types": "index.d.ts",
"files": [
"README.md",
"binding.js",
"index.d.ts",
"index.js"
],
"napi": {
"name": "rusty-schema2ts",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin"
]
}
},
"keywords": [
"jsonschema to interface",
"jsonschema to ts",
"schema to typescript",
"schema to ts",
"schema to interface",
"schema to type",
"rust native addon"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.16.2",
"@puffmeow/schema2ts": "^0.2.4",
"@types/node": "^20.4.9",
"json-schema-to-typescript": "^13.0.2",
"prettier": "^3.1.1",
"tinybench": "^2.5.0",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js binding.js",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "vitest run",
"build-test": "npm run build && npm run test",
"universal": "napi universal",
"version": "napi version",
"bench": "node bench/index.js"
},
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/PuffMeow/rusty-schema2ts"
}
}