-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 936 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 936 Bytes
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
{
"name": "eventkit-node",
"author": "Deniz Acay",
"license": "MPL-2.0",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:native && npm run build:ts",
"build:native": "swift build -c release && cp .build/release/libEventKitBridge.a ./ && node-gyp rebuild",
"clean": "rm -rf build .build libEventKitBridge.a dist",
"build:ts": "tsc",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"node-addon-api": "^8.3.1"
},
"devDependencies": {
"@types/node": "^20.17.24",
"typescript": "^5.8.2"
},
"files": [
"dist",
"build/Release",
"binding.gyp",
"node-addon",
"Package.swift",
"libEventKitBridge.a",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dacay/eventkit-node.git"
}
}