-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 842 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 842 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
{
"name": "quicktype-typescript-input-demo",
"version": "1.0.0",
"description": "Example quicktype project using TypeScript as input",
"main": "index.js",
"scripts": {
"build": "npm run clean && ts-node ./index.ts",
"clean": "rm -rf ./dist",
"dev": "npm run build",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "tslint --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"quicktype",
"typescript",
"input"
],
"author": "kmturley",
"license": "ISC",
"devDependencies": {
"glob": "^10.3.10",
"prettier": "^3.2.5",
"quicktype-core": "^23.0.104",
"quicktype-typescript-input": "^23.0.104",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
}
}