-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.24 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.24 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
64
65
66
{
"name": "@libwin/libwin",
"version": "1.0.0",
"description": "Native Node.js bindings for the Win32 API",
"workspaces": [
"packages/common",
"packages/comctl32",
"packages/gdi32",
"packages/kernel32",
"packages/user32"
],
"main": "index.js",
"type": "module",
"scripts": {
"configure": "npm run configure -ws",
"clean": "npm run clean -ws",
"build": "npm run build -ws",
"rebuild": "npm run rebuild -ws",
"configure:common": "npm run configure --workspace=packages/common",
"configure:user32": "npm run configure --workspace=packages/user32",
"configure:kernel32": "npm run configure --workspace=packages/kernel32",
"configure:gdi32": "npm run configure --workspace=packages/gdi32",
"configure:comctl32": "npm run configure --workspace=packages/comctl32",
"build:common": "npm run build --workspace=packages/common",
"build:user32": "npm run build --workspace=packages/user32",
"build:kernel32": "npm run build --workspace=packages/kernel32",
"build:gdi32": "npm run build --workspace=packages/gdi32",
"build:comctl32": "npm run build --workspace=packages/comctl32",
"rebuild:common": "npm run rebuild --workspace=packages/common",
"rebuild:user32": "npm run rebuild --workspace=packages/user32",
"rebuild:kernel32": "npm run rebuild --workspace=packages/kernel32",
"rebuild:gdi32": "npm run rebuild --workspace=packages/gdi32",
"rebuild:comctl32": "npm run rebuild --workspace=packages/comctl32",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KasimAhmic/libwin.git"
},
"keywords": [
"nodejs",
"native",
"addon",
"win32",
"c++"
],
"author": "Kasim Ahmic",
"license": "MIT",
"bugs": {
"url": "https://github.com/KasimAhmic/libwin/issues"
},
"homepage": "https://github.com/KasimAhmic/libwin#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
"node-addon-api": "^8.5.0",
"node-api-headers": "^1.5.0",
"prettier": "^3.6.2",
"rollup": "^4.49.0",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}