-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 952 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 952 Bytes
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
{
"name": "@zhin.js/schema",
"version": "1.0.52",
"description": "Configuration validation and schema system for Zhin.js",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"development": "./src/index.ts",
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib"
},
"devDependencies": {
"typescript": "^6.0.0",
"@types/node": "^24.3.0",
"zhin.js": "workspace:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git",
"directory": "basic/schema"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"zhin.js": "workspace:*"
},
"keywords": [
"zhin",
"bot",
"schema",
"validation",
"config",
"type-checking"
]
}