forked from wwsheng009/yao-app-ts-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 1.46 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
{
"name": "yao-app-ts-types",
"version": "1.1.1",
"description": "typescript types for yao application",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc-alias",
"doc": "ts-node -r tsconfig-paths/register src/doc/index.ts",
"schema:flow": "ts-json-schema-generator --path src/types/dsl/flow.ts --type YaoFlow.Flow > ./json-schemas/flow.json",
"schema:api_http": "ts-json-schema-generator --path src/types/dsl/api_http.ts --type YaoHttp.HttpDSL > ./json-schemas/api_http.json",
"schema:form": "ts-json-schema-generator --path src/types/dsl/form.ts --type YaoForm.FormDSL > ./json-schemas/form.json",
"schema:table": "ts-json-schema-generator --path src/types/dsl/table.ts --type YaoTable.TableDSL > ./json-schemas/table.json",
"npm-publish": "npm run build && npm pack && npm publish",
"build-schema": "ts-node src/build.ts"
},
"files": [
"dist",
"LICENSE",
"json-schemas",
"README.md",
"package.json"
],
"keywords": [
"yao",
"yao-engine"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"antd": "^5.4.0",
"axios": "^1.3.5",
"ts-json-schema-generator": "^1.2.0",
"@types/node": "^18.14.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5",
"@types/antd": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/react": "^18.0.33"
},
"dependencies": {
}
}