-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.07 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
75
76
{
"name": "@saeidex/t20",
"version": "0.4.1",
"type": "module",
"license": "GPL-3.0-only",
"description": "A scaffolding CLI tool for Twenty CRM",
"main": "dist/bin.cjs",
"bin": {
"t20": "dist/bin.cjs"
},
"author": "Ebrahim Khalil <ebrahim.khalil.nayeem@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/saeidex/t20.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup && bun copy-package-json",
"build:ts": "tsup",
"clean": "rimraf dist/*",
"check": "tsgo -p tsconfig.src.json --noEmit",
"dev": "vitest",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint --fix -c .oxlintrc.json .",
"typecheck": "tsgo -p tsconfig.src.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"copy-package-json": "tsx scripts/copy-package-json.ts",
"changeset-version": "changeset version",
"changeset-publish": "bun run build && changeset publish"
},
"prettier": {
"printWidth": 65,
"useTabs": false,
"bracketSpacing": true,
"tabWidth": 2
},
"dependencies": {
"@clack/prompts": "^1.6.0",
"commander": "^15.0.0",
"copy-paste": "^2.2.0",
"gradient-string": "^3.0.0",
"marked": "^18.0.5",
"marked-terminal": "^7.3.0",
"pluralize": "^8.0.0",
"ts-dedent": "^2.3.0",
"twenty-sdk": "2.13.0",
"uuid": "^14.0.1",
"valibot": "^1.4.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/copy-paste": "^2.1.0",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^26.0.1",
"@types/pluralize": "^0.0.33",
"@typescript/native-preview": "7.0.0-dev.20260310.1",
"@vitest/coverage-v8": "^3.2.6",
"@vitest/ui": "^4.1.9",
"eslint-plugin-codegen": "0.28.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"oxlint": "^1.71.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}