-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 831 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 831 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": "cloudkit-js",
"version": "0.0.3",
"description": "A JS library for managing a CloudKit container",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"engines": {
"node": ">=18.6"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/danjohnson95/cloudkit-js.git"
},
"bugs": {
"url": "https://github.com/danjohnson95/cloudkit-js/issues"
},
"keywords": [
"orm",
"cloudkit",
"apple"
],
"author": "Dan Johnson <hello@danjohnson.xyz>",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}