-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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": "win32-ffi",
"version": "0.0.6-alpha.5",
"description": "Win32 api javascript binding",
"author": "Han <[email protected]>",
"homepage": "https://github.com/deskbtm/win32-ffi/",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"lib/**",
"dist/**"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"windows",
"ffi",
"electron",
"node",
"win32",
"system"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deskbtm/win32-ffi.git"
},
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.json",
"start": "rimraf ./dist && tsc -w -p tsconfig.json",
"gen": "node ./scripts/win_cpp_fns_to_ts_generator.js",
"doc": "typedoc ./lib --readme ./README.md",
"lint": "eslint lib --fix --ext \".ts\" ",
"test": "jest"
},
"bugs": {
"url": "https://github.com/deskbtm/win32-ffi/issues"
},
"devDependencies": {
"@types/ffi-napi": "^4.0.7",
"@types/jest": "^27.4.1",
"@types/ref-napi": "^3.0.4",
"@types/ref-union-di": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"cheerio": "1.0.0-rc.10",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.5.1",
"node-gyp": "^9.0.0",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.13",
"typescript": "^4.3.2"
},
"dependencies": {
"ffi-napi": "^4.0.3",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"ref-union-di": "^1.0.1"
}
}