-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 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-tap-script",
"version": "1.0.1",
"description": "Scaffold a Tap v2 browser-automation plan in seconds. `npx create-tap-script <site>/<name>` generates a deterministic .plan.json that runs at zero LLM tokens in Claude Code, Cursor, and any MCP host.",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"create-tap-script": "dist/cli.js"
},
"files": [
"dist/cli.js",
"dist/cli.js.map",
"dist/create.js",
"dist/create.js.map",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"test": "node --test test/parse.test.mjs",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"keywords": [
"scaffold",
"create",
"starter",
"npx-template",
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"cursor",
"ai-agent",
"browser-automation",
"browser-agent",
"scraper-template",
"playwright-alternative",
"puppeteer-alternative",
"drift-detection",
"tap",
"taprun",
"plan-v2"
],
"homepage": "https://taprun.dev/?utm_source=npm&utm_medium=package&utm_campaign=create-tap-script",
"repository": {
"type": "git",
"url": "git+https://github.com/LeonTing1010/tap.git",
"directory": "packages/create-tap-script"
},
"bugs": {
"url": "https://github.com/LeonTing1010/tap/issues"
},
"license": "MIT",
"author": "Leon Ting <noreply@taprun.dev>",
"devDependencies": {
"@taprun/spec": "^1.0.0",
"typescript": "^5.5.0",
"@types/node": "^22.0.0"
}
}