-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "js-utils-kit",
"displayName": "JS Utils Kit",
"version": "0.5.4",
"description": "Essential JavaScript helpers",
"homepage": "https://js-utils.js.org",
"repository": {
"type": "git",
"url": "https://github.com/teneplaysofficial/js-utils-kit",
"directory": ""
},
"bugs": {
"url": "https://github.com/teneplaysofficial/js-utils-kit/issues"
},
"license": "MIT",
"author": {
"name": "Sriman",
"email": "136729116+TenEplaysOfficial@users.noreply.github.com",
"url": "https://tene.vercel.app"
},
"private": true,
"packageManager": "pnpm@11.5.0",
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"prebuild": "rimraf --glob \"packages/**/dist\"",
"build": "turbo run build",
"build:docs": "typedoc",
"changeset": "changeset && pnpm deps:sync",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version",
"checks": "node scripts/checks.js",
"deps:sync": "node scripts/sync-dependent-bumps.js",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"gen": "pnpm gen:docs && pnpm gen:pt && pnpm gen:exports",
"gen:docs": "node scripts/docs.js",
"gen:exports": "node scripts/exports.js",
"gen:new": "node scripts/new-project.js",
"gen:pt": "node scripts/generate-packages-table.js",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepare": "husky",
"sync": "turbo run sync",
"test": "turbo run test -- --coverage",
"typecheck": "tsc"
},
"dependencies": {
"archiver": "catalog:",
"figlet": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.30.0",
"@changesets/parse": "^0.4.3",
"@clack/prompts": "^1.1.0",
"@manypkg/get-packages": "^3.1.0",
"@tenedev/prettier-config": "^1.2.0",
"@tenedev/tsconfig": "^0.0.4",
"@types/archiver": "^7.0.0",
"@types/figlet": "^1.7.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"gray-matter": "^4.0.3",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"jiti": "^2.6.1",
"lint-staged": "^17.0.0",
"prettier": "^3.8.1",
"rewrite.md": "^1.0.0",
"rimraf": "^6.1.3",
"ts-morph": "^28.0.0",
"tsdown": "^0.22.0",
"turbo": "^2.8.16",
"typedoc": "^0.28.17",
"typescript": "^6.0.0",
"use-colors": "^0.1.0",
"vitest": "^4.1.0",
"zylog": "^0.1.0"
},
"prettier": "@tenedev/prettier-config",
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts,json}": "pnpm run lint:fix"
}
}