-
Notifications
You must be signed in to change notification settings - Fork 921
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.57 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
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
{
"name": "type-on-strap-helper",
"version": "2.5.0",
"description": "CLI utilities for the Type on Strap jekyll theme",
"scripts": {
"post": "tsx .github/cli/src/post.ts",
"compress": "tsx .github/cli/src/images.ts compress",
"thumbnails": "tsx .github/cli/src/images.ts thumbnails",
"thumbnails-all": "tsx .github/cli/src/images.ts thumbnails-all",
"webp": "tsx .github/cli/src/images.ts webp",
"build:js": "tsx .github/cli/src/build.ts js",
"build:css": "tsx .github/cli/src/build.ts css",
"build": "tsx .github/cli/src/build.ts",
"release": "tsx .github/cli/src/release.ts",
"update:katex": "tsx .github/cli/src/update/katex.ts",
"update:mermaid": "tsx .github/cli/src/update/mermaid.ts",
"validate": "tsx .github/cli/src/validators/index.ts",
"validate:katex": "tsx .github/cli/src/validators/katex.ts",
"validate:mermaid": "tsx .github/cli/src/validators/mermaid.ts",
"validate:fa": "tsx .github/cli/src/validators/font-awesome.ts",
"validate:masonry": "tsx .github/cli/src/validators/masonry.ts",
"validate:search": "tsx .github/cli/src/validators/jekyll-search.ts",
"test": "jest --config .github/cli/jest.config.ts --selectProjects unit",
"test:browser": "jest --config .github/cli/jest.config.ts --selectProjects browser",
"test:integration": "jest --config .github/cli/jest.config.ts --selectProjects integration",
"test:e2e": "playwright test --config .github/cli/playwright.config.ts",
"test:all": "jest --config .github/cli/jest.config.ts",
"playwright:install": "playwright install --with-deps",
"server": "http-server _site -p 4000 -c-1",
"typecheck": "tsc --noEmit --project .github/cli/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sylhare/Type-on-Strap.git"
},
"keywords": [
"jekyll"
],
"author": "sylhare",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sylhare/Type-on-Strap/issues"
},
"homepage": "https://github.com/sylhare/Type-on-Strap#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/clean-css": "^4.2.11",
"@types/jest": "^29.5.12",
"@types/less": "^3.0.8",
"@types/node": "^20.0.0",
"clean-css": "^5.3.0",
"esbuild": "^0.24.0",
"glob": "^11.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"less": "^4.2.0",
"sharp": "^0.33.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}