-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "typea",
"description": "JS 运行时数据类型、结构验证与转换器",
"type": "module",
"version": "8.4.0",
"main": "./main/index.js",
"module": "./main/index.js",
"types": "./main/index.d.ts",
"exports": {
".": "./main/index.js",
"./utility": "./main/utility.js",
"./*": "./type/*"
},
"author": "lixiang",
"license": "MIT",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"clean": "tsc --build --clean",
"test": "jtm",
"start": "node ./main/index.js"
},
"keywords": [
"typea",
"schema",
"validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xiangle/typea.git"
},
"bugs": {
"url": "https://github.com/xiangle/typea/issues"
},
"homepage": "https://github.com/xiangle/typea#readme",
"files": [
"main/**/*.js",
"main/**/*.d.ts",
"type/**/*.js",
"type/**/*.d.ts"
],
"directories": {
"test": "test"
},
"devDependencies": {
"jtm": "^1.2.1",
"typescript": "^5.2.2"
}
}