-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.35 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@steipete/poltergeist",
"version": "2.1.1",
"description": "The ghost that keeps your builds fresh - a universal file watcher with auto-rebuild for any language or build system",
"keywords": [
"automation",
"build",
"cargo",
"cli",
"cpp",
"cross-platform",
"dev-tools",
"file-watcher",
"go",
"gradle",
"linux",
"macos",
"make",
"maven",
"npm",
"polter",
"rust",
"smart-execution",
"swift",
"typescript",
"watchman",
"windows",
"xcode"
],
"homepage": "https://github.com/steipete/poltergeist",
"bugs": {
"url": "https://github.com/steipete/poltergeist/issues"
},
"license": "MIT",
"author": "Peter Steinberger <steipete@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/steipete/poltergeist.git"
},
"bin": {
"polter": "./dist/polter.js",
"poltergeist": "./dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"type": "module",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsgo",
"build:bun": "bun scripts/build-bun.js",
"build:bun:all": "bun scripts/build-bun.js --all-platforms",
"build:bun:test": "bun scripts/build-bun.js --test",
"build:bun:debug": "bun scripts/build-bun.js --debug",
"build:bun:optimized": "bun scripts/build-bun-optimized.js",
"build:bun:optimized:benchmark": "bun scripts/build-bun-optimized.js --benchmark",
"dev": "tsx watch src/cli.ts",
"dev:bun": "bun --watch src/cli.ts",
"start": "node dist/cli.js",
"start:bun": "bun run src/cli.ts",
"test": "vitest",
"test:bun": "bun test",
"test:windows-ci": "vitest --config vitest.config.windows-ci.ts",
"test:e2e": "pnpm run build && pnpm exec tsx scripts/run-examples.ts",
"test:all": "pnpm test && pnpm run test:e2e",
"lint": "pnpm format:check && oxlint --deny-warnings --allow eslint/no-unused-vars --allow eslint/no-control-regex --allow eslint/no-eval --allow unicorn/no-useless-length-check --allow unicorn/no-useless-fallback-in-spread src test",
"lint:fix": "pnpm format && oxlint --fix src test",
"format": "oxfmt --write src test package.json tsconfig.json vitest.config.ts",
"format:check": "oxfmt --check src test package.json tsconfig.json vitest.config.ts",
"typecheck": "tsgo --noEmit",
"test:coverage": "cross-env POLTERGEIST_COVERAGE_MODE=true vitest run --coverage test/utils/paths.test.ts test/utils/glob-matcher.test.ts test/utils/atomic-write.test.ts test/utils/cli-formatter.test.ts test/utils/build-status-manager.test.ts",
"poltergeist:self:haunt": "node dist/cli.js haunt",
"poltergeist:self:panel": "node --watch --watch-path dist --watch-preserve-output dist/cli.js panel",
"poltergeist:panel": "pnpm run poltergeist:self:panel",
"docs:api": "typedoc",
"docs:api:watch": "typedoc --watch",
"docs:swift": "cd apps/mac && ./scripts/generate-docs.sh",
"docs:serve": "cd docs && python3 -m http.server 8080",
"docs:build": "pnpm run docs:api && pnpm run docs:swift && echo 'Complete API documentation generated in docs/api/'",
"prepublishOnly": "pnpm run build",
"oracle": "oracle"
},
"dependencies": {
"@logtape/logtape": "^2.0.6",
"@mariozechner/pi-tui": "^0.73.1",
"arkregex": "^0.0.5",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"es-toolkit": "^1.46.1",
"fb-watchman": "^2.0.2",
"glob": "^13.0.6",
"node-notifier": "^10.0.1",
"ora": "^9.4.0",
"picomatch": "^4.0.4",
"wrap-ansi": "^10.0.0",
"write-file-atomic": "^8.0.0",
"zod": "^4.4.2"
},
"devDependencies": {
"@steipete/oracle": "link:../oracle",
"@types/fb-watchman": "^2.0.6",
"@types/node": "^25.6.0",
"@types/node-notifier": "^8.0.5",
"@types/picomatch": "^4.0.3",
"@types/write-file-atomic": "^4.0.3",
"@typescript/native-preview": "7.0.0-dev.20260511.1",
"@vitest/coverage-v8": "^4.1.5",
"cross-env": "^10.1.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.62.0",
"postcss": "^8.5.13",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "^6.0.3",
"vite": "^8.0.12",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"uuid@<14.0.0": "14.0.0"
}
}
}