-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 946 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 946 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
{
"name": "@mobecher/rollup-plugin-quicktype",
"version": "0.1.1",
"description": "Rollup plugin to run quicktype",
"main": "dist/index.js",
"module": "dist/index.es.js",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"rollup": "^2.40.0"
},
"scripts": {
"prepare": "rollup -c",
"start": "npm install && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobec/rollup-plugin-quicktype.git"
},
"keywords": [
"quicktype",
"generate",
"code",
"generation",
"javascript",
"json",
"schema",
"typescript"
],
"author": "Moritz Becher",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobec/rollup-plugin-quicktype/issues"
},
"homepage": "https://github.com/mobec/rollup-plugin-quicktype#readme",
"dependencies": {
"quicktype": "^15.0.260"
},
"files": [
"dist/index.js",
"dist/index.es.js"
]
}