-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "teloce-monorepo",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"description": "A TypeScript template engine for Python web developers",
"repository": {
"type": "git",
"url": "https://github.com/aldanedev-create/telonce"
},
"bugs": {
"url": "https://github.com/aldanedev-create/telonce/issues"
},
"homepage": "https://telonce-website.vercel.app",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"build:umbrella": "turbo run build --filter=teloce",
"dev": "turbo run dev --parallel",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"lint": "biome check --apply .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules .turbo",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm test && changeset publish",
"publish:packages": "pnpm publish -r --access public"
},
"keywords": [
"teloce",
"template-engine",
"python",
"flask",
"django",
"fastapi",
"signals",
"reactive",
"typescript"
],
"author": "ALdane Hutchinson",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@changesets/cli": "^2.31.1",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^2.0.0",
"@vscode/vsce": "^2.32.0",
"husky": "^9.0.0",
"tsup": "^8.0.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"vite": "^5.3.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@11.25.0"
}