-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
44
45
46
47
48
49
50
{
"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": "10.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",
"files": [
"dist",
"types"
],
"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"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"json-bigint": "1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/json-bigint": "1.0.4",
"playwright": "1.56.1",
"rollup": "4.60.1",
"serve-handler": "6.1.7",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"jsdelivr": "dist/iife/sdk.js",
"unpkg": "dist/iife/sdk.js"
}