-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.87 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.87 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
{
"private": true,
"name": "@taskless/skills",
"version": "0.6.0",
"license": "MIT",
"repository": "taskless/skills.git",
"scripts": {
"build": "run-s build:generate-commands build:link-skills build:compile",
"build:compile": "turbo run build",
"build:generate-commands": "tsx scripts/generate-commands.ts",
"build:link-skills": "tsx scripts/link-skills.ts",
"bump": "run-s bump:version bump:sync build:generate-commands",
"bump:sync": "tsx scripts/sync-skill-versions.ts",
"bump:version": "changeset version",
"changeset": "changeset",
"cli": "./packages/cli/dist/index.js",
"husky": "husky",
"lint": "eslint",
"lint-staged": "lint-staged",
"openspec": "openspec",
"package": "run-s bump build",
"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",
"@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"
]
}
}