-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "create-slides-app",
"version": "0.1.10",
"description": "Create a Markdown-based slide presentation app with React",
"keywords": [
"cli",
"markdown",
"presentation",
"react",
"slides"
],
"homepage": "https://github.com/schroneko/create-slides-app#readme",
"bugs": {
"url": "https://github.com/schroneko/create-slides-app/issues"
},
"license": "MIT",
"author": "schroneko",
"repository": {
"type": "git",
"url": "git+https://github.com/schroneko/create-slides-app.git"
},
"bin": {
"create-slides-app": "dist/cli.js"
},
"files": [
"dist",
"templates",
"!templates/*/node_modules",
"!templates/*/dist",
"!templates/*/package-lock.json"
],
"type": "module",
"scripts": {
"build": "tsup src/cli.ts --format esm --dts",
"check": "npm run build && npm run smoke && npm run check:template",
"check:template": "node --import tsx ./scripts/check-templates.ts",
"dev": "tsup src/cli.ts --format esm --watch",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"generate:templates": "node --import tsx ./scripts/generate-templates.ts",
"smoke": "node --import tsx ./scripts/smoke.ts",
"prepublishOnly": "npm run build && npm run smoke",
"lint": "oxlint . --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern build --ignore-pattern .next --ignore-pattern coverage --ignore-pattern .turbo --ignore-pattern .wrangler --ignore-pattern .build --ignore-pattern .venv",
"lint:fix": "oxlint --fix . --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern build --ignore-pattern .next --ignore-pattern coverage --ignore-pattern .turbo --ignore-pattern .wrangler --ignore-pattern .build --ignore-pattern .venv"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"pdf-lib": "^1.17.1",
"picocolors": "^1.1.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"engines": {
"node": "^24.0.0"
}
}