-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "types-as-schema",
"version": "2.2.0",
"description": "Genetate json schema, protobuf file from typescript types.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "clean-scripts build",
"lint": "clean-scripts lint",
"test": "clean-scripts test",
"fix": "clean-scripts fix",
"release": "clean-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plantain-00/types-as-schema.git"
},
"author": "York Yao",
"license": "MIT",
"bugs": {
"url": "https://github.com/plantain-00/types-as-schema/issues"
},
"typeCoverage": {
"atLeast": 99.73
},
"homepage": "https://github.com/plantain-00/types-as-schema#readme",
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/minimist": "1.2.2",
"@types/node": "18.11.10",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"autoprefixer": "10.4.13",
"clean-css-cli": "5.6.1",
"clean-release": "2.17.1",
"clean-scripts": "1.20.2",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-plantain": "2.0.0",
"file2variable-cli": "2.0.1",
"github-fork-ribbon-css": "0.2.3",
"http-server": "14.1.1",
"less": "4.0.0",
"markdownlint-cli": "0.32.2",
"no-unused-export": "1.15.0",
"postcss": "8.4.19",
"postcss-cli": "10.1.0",
"rev-static": "3.6.0",
"rimraf": "3.0.2",
"stylelint": "14.15.0",
"stylelint-config-standard": "29.0.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-plantain": "0.0.2",
"type-coverage": "2.24.1",
"typescript": "4.9.3",
"vue": "3.2.45",
"watch-then-execute": "1.2.0",
"webpack": "5.75.0",
"webpack-cli": "5.0.0"
},
"dependencies": {
"chokidar": "3",
"fast-glob": "3",
"fs-extra": "9 || 10 || 11",
"minimist": "1",
"tslib": "2"
},
"peerDependencies": {
"typescript": "3 || 4"
},
"bin": {
"types-as-schema": "bin/types-as-schema"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}