-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
55
56
{
"name": "@junobuild/functions",
"version": "0.1.0",
"description": "JavaScript and TypeScript utilities for Juno Serverless Functions",
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./sdk": {
"types": "./sdk.d.ts",
"import": "./sdk.js"
},
"./ic-cdk": {
"types": "./ic-cdk.d.ts",
"import": "./ic-cdk.js"
}
},
"files": [
"README.md",
"LICENSE",
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"**/*.d.ts.map"
],
"scripts": {
"clean": "git ls-files --others --ignored --exclude-standard | grep -v \"LICENSE\" | xargs rm -rf",
"ts-declaration": "tsc --emitDeclarationOnly -outDir . && cp -R src/*.d.ts ./",
"build": "npm run clean && tsc --noEmit && node esbuild.mjs && npm run ts-declaration",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junobuild/juno-js.git",
"directory": "packages/functions"
},
"bugs": {
"url": "https://github.com/junobuild/juno-js"
},
"homepage": "https://juno.build",
"peerDependencies": {
"@dfinity/agent": "^2.3.0",
"@dfinity/candid": "^2.3.0",
"@dfinity/identity": "^2.3.0",
"@dfinity/principal": "^2.3.0",
"@dfinity/utils": "^2",
"zod": "^3"
}
}