-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "@transloadit/types",
"version": "0.0.1-alpha.1",
"description": "TypeScript types for Transloadit Robots, Assemblies, Templates and more.",
"repository": "https://github.com/transloadit/types",
"author": "Transloadit <hello@transloadit.com>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"format": "prettier --write .",
"lint": "npm-run-all --parallel lint:**",
"lint:formatting": "prettier --check .",
"lint:js": "eslint .",
"lint:ts": "tsc --noEmit",
"parse:robots": "tsx scripts/parse-robots.ts"
},
"dependencies": {
"zod": "^3.20.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"camelcase": "^7.0.1",
"eslint": "^8.33.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsx": "^3.12.2",
"typescript": "^4.9.5"
}
}