-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.24 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.24 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
{
"author": "Toufiqur Rahaman Chowdhury",
"description": "A compilation of re-usable, high-quality tools and utilities for TypeScript that have been developed and refined over many years. The collection aims to solve common real-world problems with elegant, robust, practical and well-tested solutions.",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stackblitz/sdk": "^1.11.0",
"@types/eslint": "^9.6.1",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"lerna": "^8.2.4",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.4",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
},
"keywords": [],
"main": "",
"name": "superutils",
"license": "ISC",
"private": true,
"scripts": {
"_build": "tsc --build",
"_build:watch": "tsc --build --watch",
"build": "lerna run build --ignore @superutils/demo --ignore @superutils/template",
"build:watch": "lerna watch -- lerna run build --scope=$LERNA_PACKAGE_NAME",
"clean": "tsc --build --clean",
"clean:purge": "rm -rf packages/*/dist/* && npm run clean",
"docs": "npm run docs:build-packages && vitepress dev docs",
"docs:build": "npm run docs:coverage && npm run docs:build-packages && vitepress build docs && cp -r docs/assets/* docs/.vitepress/dist/assets/",
"docs:build-packages": "typedoc",
"docs:coverage": "node ./scripts/inject-coverage-data.js",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"publish:packages": "lerna publish --no-private",
"publish:prepare": "npm run build && npm run test :1 && npm run lint && npm run docs:build",
"start": "npm run clean:purge && npm run build && npm run build:watch",
"test": "bash scripts/test.sh",
"vitest": "vitest",
"vitest:coverage": "vitest --coverage"
},
"type": "module",
"workspaces": [
"packages/*"
],
"version": "1.0.0"
}