-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 KB
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
{
"name": "@appwrite.io/console",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
"version": "4.0.0",
"license": "BSD-3-Clause",
"main": "dist/cjs/sdk.js",
"exports": {
".": {
"import": "./dist/esm/sdk.js",
"require": "./dist/cjs/sdk.js",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"module": "dist/esm/sdk.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/appwrite/sdk-for-console"
},
"scripts": {
"build": "npm run build:types && npm run build:libs",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
"build:libs": "rollup -c"
},
"dependencies": {
"json-bigint": "1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"@types/json-bigint": "1.0.4",
"playwright": "1.56.1",
"rollup": "2.79.2",
"serve-handler": "6.1.0",
"tslib": "2.4.0",
"typescript": "4.7.2"
},
"jsdelivr": "dist/iife/sdk.js",
"unpkg": "dist/iife/sdk.js"
}