-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@seamapi/docs",
"private": true,
"version": "1.0.0",
"description": "Seam docs.",
"type": "module",
"homepage": "https://github.com/seamapi/docs",
"bugs": "https://github.com/seamapi/docs/issues",
"repository": "seamapi/docs",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
"name": "Seam Labs, Inc.",
"email": "[email protected]"
},
"files": [
"src"
],
"scripts": {
"build": "tsx src/metalsmith.ts",
"postbuild": "npm run format",
"typecheck": "tsc",
"lint": "eslint --ignore-path .prettierignore .",
"prelint": "prettier --check --ignore-path .prettierignore .",
"format": "eslint --ignore-path .prettierignore --fix .",
"preformat": "prettier --write --ignore-path .prettierignore ."
},
"engines": {
"node": ">=20.9.0",
"npm": ">= 10.1.0"
},
"dependencies": {
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/metadata": "^0.3.0",
"@prettier/plugin-php": "^0.22.2",
"@seamapi/blueprint": "^0.32.1",
"@prettier/plugin-ruby": "^4.0.4",
"@seamapi/types": "1.344.1",
"change-case": "^5.4.4",
"command-exists": "^1.2.9",
"del": "^8.0.0",
"execa": "^9.3.1",
"jstransformer-handlebars": "^1.2.0",
"metalsmith": "^2.6.3",
"prettier": "^3.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@types/debug": "^4.1.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.8.10",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"tsx": "^4.6.2",
"typescript": "~5.3.3"
}
}