-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@codetie/codetie-monorepo",
"private": true,
"version": "0.0.1",
"homepage": "https://codetie.ai",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instructa/codetie"
},
"license": "MIT",
"bin": {
"codetie-create": "./index.js"
},
"scripts": {
"build:packages": "pnpm -r --filter './packages/**' build",
"build:templates": "pnpm -r --filter './templates/**' build",
"build:docs": "pnpm -r --filter './docs/**' build",
"dev:docs": "pnpm -r --filter './docs/**' dev",
"lint": "eslint --cache .",
"typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
"build": "pnpm -r --filter='./packages/codetie' run build",
"publish-npm": "pnpm -r --filter='./packages/codetie' run build && tsx scripts/release.ts",
"link-create": "cd packages/create-codetie && pnpm link --global",
"llms": "npx repomix docs/codetie-docs/content --include '**/*.md' --ignore '**/1.index.md,index.md,*credits*.md,*codetie*' --output docs/codetie-docs/public/llms_full.txt"
},
"keywords": [
"codetie",
"cli",
"three",
"threejs",
"project-setup",
"cursor",
"cursor-ai",
"react-three-fiber",
"ai-coding",
"instructa"
],
"devDependencies": {
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@vitejs/release-scripts": "^1.3.3",
"chalk": "^5.4.1",
"conventional-changelog-cli": "^5.0.0",
"cursor-tools": "latest",
"eslint": "^9.22.0",
"execa": "^9.5.2",
"globals": "^15.15.0",
"inquirer": "^10.2.2",
"lint-staged": "^15.4.3",
"mustache": "^4.2.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"release-it": "^17.11.0",
"rimraf": "^5.0.10",
"semver": "^7.7.1",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"yargs": "^17.7.2"
},
"packageManager": "pnpm@10.6.2",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"overrides": {
"codetie": "workspace:*"
}
}
}