-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "parse-sdk-ts",
"license": "Apache-2.0",
"private": false,
"version": "1.2.1",
"type": "module",
"description": "A client/server library for typescript that provides type-safety for database classes, queries and cloud functions.",
"scripts": {
"build": "rimraf -rf dist && tsc",
"check": "npm run build && madge --extensions js,ts --circular .",
"release": "release-it"
},
"keywords": [
"parse",
"server",
"sdk",
"typescript",
"javascript",
"typed",
"type-safety",
"type-safe"
],
"author": "Theodor Lundqvist",
"dependencies": {
"@types/parse": "3.0.4",
"crypto-js": "^4.2.0"
},
"peerDependencies": {
"parse": ">3.4.0"
},
"devDependencies": {
"madge": "6.1.0",
"release-it": "16.2.1",
"rimraf": "5.0.5",
"typescript": "5.2.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./auth": "./dist/auth.js",
"./attributes": "./dist/attributes/index.js"
},
"typesVersions": {
"*": {
"auth": [
"./dist/auth.d.ts"
],
"attributes": [
"./dist/attributes/index.d.ts"
]
}
}
}