-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "@wwdcscholars/cloudkit",
"description": "WWDCScholars CloudKit Interface and Model",
"version": "3.12.0",
"license": "MIT",
"author": {
"name": "WWDCScholars",
"url": "https://github.com/WWDCScholars",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WWDCScholars/web-cloudkit.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"files": [
"lib/",
"server.ts"
],
"scripts": {
"build": "rm -rf lib && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "yarn run build",
"release": "commit-and-tag-version",
"release:pre": "commit-and-tag-version --prerelease pre"
},
"dependencies": {
"defu": "^2.0.4",
"events": "^3.2.0",
"lodash.merge": "^4.6.2",
"path": "^0.12.7",
"tsl-apple-cloudkit": "^0.2.18"
},
"devDependencies": {
"@nuxt/types": "^2.17.3",
"@types/events": "^3.0.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.7",
"commit-and-tag-version": "^12.2.0",
"nuxt": "^2.17.3",
"sass": "^1.72.0",
"typescript": "^4.2.4",
"vuex": "^3.5.1"
},
"peerDependencies": {
"nuxt": "^2.0.0",
"vuex": "^3.0.0"
}
}