-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "@byteink/mppjs",
"version": "0.1.5",
"description": "Convert Microsoft Project (.mpp) files to XML from Node, Bun, or Deno. Native binary, no JVM required.",
"keywords": [
"microsoft-project",
"mpp",
"mspdi",
"mpxj",
"graalvm",
"native-image",
"converter",
"cli",
"typescript"
],
"homepage": "https://github.com/byteink/mppjs#readme",
"bugs": "https://github.com/byteink/mppjs/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/byteink/mppjs.git"
},
"license": "MIT",
"author": "byteink",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"mppjs": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"optionalDependencies": {
"@byteink/mppjs-darwin-arm64": "0.1.5",
"@byteink/mppjs-linux-arm64": "0.1.5",
"@byteink/mppjs-linux-x64": "0.1.5",
"@byteink/mppjs-win32-x64": "0.1.5"
},
"scripts": {
"build:jar": "cd java && mvn -q -DskipTests package",
"build:native": "native-image -H:+UnlockExperimentalVMOptions --no-fallback -H:+AddAllCharsets -H:ConfigurationFileDirectories=.ni-config -H:Name=mpxj-convert -H:Path=bin -jar java/target/mpxj-convert.jar",
"build:ts": "tsc -p tsconfig.json",
"build": "npm run build:jar && npm run build:native && npm run build:ts",
"test": "bun test test/",
"prepublishOnly": "npm run build:ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}