-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.14 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
{
"private": true,
"name": "@taskless/skills",
"version": "0.10.2",
"license": "MIT",
"repository": "taskless/cli.git",
"scripts": {
"build": "pnpm build:compile",
"build:compile": "turbo run build",
"build:dev": "pnpm --filter @taskless/cli build:dev",
"build:self": "run-s build:self:compile build:self:install",
"build:self:compile": "pnpm --filter @taskless/cli build:self",
"build:self:install": "node packages/cli/dist-self/index.js init --no-interactive",
"bump": "run-s bump:version bump:sync",
"bump:sync": "tsx scripts/sync-skill-versions.ts",
"bump:version": "changeset version",
"changeset": "changeset",
"cli": "./packages/cli/dist/index.js",
"dotagents": "dotagents",
"husky": "husky",
"lint": "eslint",
"lint-staged": "lint-staged",
"openspec": "openspec",
"package": "run-s bump build",
"postinstall": "[ -n \"$CI\" ] || dotagents install || echo 'dotagents install failed — run: pnpm dotagents doctor'",
"prepare": "husky",
"prettier": "prettier",
"release": "run-s release:dry release:dry:prompt",
"release:dry": "pnpm -r publish --access public --dry-run",
"release:dry:prompt": "echo 'Good to go? pnpm release:production'",
"release:production": "pnpm -r publish --access public",
"syncpack": "syncpack",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"type": "module",
"packageManager": "pnpm@10.12.4",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@fission-ai/openspec": "^1.1.1",
"@sentry/dotagents": "^1.19.0",
"@types/node": "^25.3.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^62.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"syncpack": "^13.0.0",
"tsx": "^4.21.0",
"turbo": "^2.5.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"yaml": "^2.8.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@ast-grep/cli",
"esbuild"
]
}
}