-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "render-to-display",
"version": "1.0.2",
"description": "",
"types": "dist/main.d.ts",
"type": "module",
"scripts": {
"test": "mocha -r tsx test/**/*.test.ts",
"prebuild:cpp": "node-gyp clean && node-gyp configure",
"build:cpp": "node-gyp clean && node-gyp configure && node-gyp build",
"build:cpp_ia32": "node-gyp rebuild --target_arch=ia32",
"build:cpp_x64": "node-gyp rebuild --target_arch=x64",
"build:cpp_arm64": "node-gyp rebuild --target_arch=arm64",
"build": "pnpm build:cpp && rollup -c",
"build:ts": "rollup -c",
"prepublish": "pnpm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"os": ["win64"],
"dependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.9",
"node-addon-api": "^8.3.0",
"node-gyp": "^11.0.0",
"rollup": "^4.31.0",
"rollup-plugin-clear": "^2.0.7",
"tslib": "^2.8.1",
"tsx": "^4.19.2"
},
"exports": {
".": {
"require": "./dist/main.cjs",
"import": "./dist/main.mjs"
}
},
"imports": {
"#render2display_addon": "./build/Release/render2display.node"
},
"main": "./dist/main.cjs",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"mocha": "^11.1.0"
}
}