-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.81 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
68
69
70
71
72
73
74
75
{
"name": "kotone",
"version": "1.3.0",
"description": "Transform file to UTF-8 by Rust",
"keywords": [
"string",
"rust",
"utf-8",
"transform",
"tramsform-to-utf-8",
"encode",
"decode"
],
"homepage": "https://github.com/xn-sakina/kotone#README",
"repository": {
"type": "git",
"url": "https://github.com/xn-sakina/kotone"
},
"license": "MIT",
"author": "fz6m",
"main": "binding.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"binding.js"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --js binding.js --release -o .",
"build:dev": "napi build --platform --js binding.js -o .",
"format:ts": "prettier --cache --parser typescript --write'src/**/*.ts'",
"format": "cargo fmt",
"prepublishOnly": "pnpm build",
"push": "vary push",
"release:only": "vary release:only",
"release": "vary np",
"release:root": "vary np --root",
"test": "vitest --run",
"vp": "vary vp"
},
"packageManager": "pnpm@9.5.0",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@napi-rs/cli": "3.0.0-alpha.55",
"@types/node": "^20.14.11",
"@xn-sakina/vary": "^1.4.0",
"bochi": "^5.0.0",
"kotone": "workspace:*",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typescript": "5.5.3",
"vitest": "^1.6.0",
"zx": "^8.1.4"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"napi": {
"binaryName": "kotone",
"packageName": "@xn-sakina/kotone",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl"
]
}
}