-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@junobuild/schema",
"version": "1.2.4",
"description": "The type system and utilities for validation on Juno",
"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",
"require": "./index.mjs"
},
"./utils": {
"types": "./utils.d.ts",
"import": "./utils.js",
"require": "./utils.mjs"
}
},
"files": [
"README.md",
"LICENSE",
"**/*.js",
"**/*.js.map",
"**/*.mjs",
"**/*.mjs.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 .",
"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/schema"
},
"bugs": {
"url": "https://github.com/junobuild/juno-js"
},
"keywords": [
"schema",
"validation",
"zod",
"type-system"
],
"homepage": "https://juno.build",
"peerDependencies": {
"zod": "^4.3"
},
"dependencies": {
"@dfinity/zod-schemas": "^3.2"
},
"devDependencies": {
"@icp-sdk/core": "^5"
}
}