-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.54 KB
/
package.json
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
{
"$schema": "https://json.schemastore.org/package",
"author": "Romain Racamier-Lafon <romain.racamier@gmail.com>",
"bin": {
"unique-mark": "./dist/unique-mark.cjs"
},
"bugs": "https://github.com/Shuunen/shuutils/issues",
"dependencies": {
"tiny-glob": "0.2"
},
"description": "utils collection",
"devDependencies": {
"@biomejs/biome": "1.9",
"@happy-dom/global-registrator": "15.11",
"@rollup/plugin-typescript": "12.1",
"@types/node": "22.10",
"@vitest/coverage-v8": "2.1",
"dependency-cruiser": "16.6",
"esbuild": "0.24",
"eslint": "*",
"eslint-plugin-shuunen": "0.3",
"repo-check": "1.39",
"tsup": "8.3",
"typescript": "5.7",
"vitest": "2.1",
"watchlist": "0.3"
},
"files": [
"dist"
],
"homepage": "https://github.com/Shuunen/shuutils#readme",
"keywords": [
"shuunen",
"utils",
"collection",
"pure",
"javascript",
"typescript"
],
"license": "MIT",
"main": "./dist/shuutils.js",
"exports": {
".": {
"import": "./dist/shuutils.js",
"require": "./dist/shuutils.cjs"
}
},
"name": "shuutils",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Shuunen/shuutils.git"
},
"scripts": {
"build": "node bin/list && tsup-node && pnpm mark && echo build success",
"build:watch": "watchlist bin src -eager -- pnpm build",
"check": "pnpm install && echo install success && pnpm build && pnpm lint && repo-check && echo repo-check success && pnpm test && echo check success",
"dev": "pnpm test:watch",
"lint": "pnpm lint:tsc && pnpm lint:biome && pnpm lint:eslint && pnpm lint:dep && echo lint success",
"lint:biome": "biome check --error-on-warnings --write --unsafe && echo lint:biome success",
"lint:dep": "depcruise src --config && echo lint:dep success",
"lint:eslint": "eslint --cache --max-warnings 0 && echo lint:eslint success",
"lint:tsc": "tsc --noEmit && echo lint:tsc success",
"lint:watch": "watchlist src tests -eager -- pnpm lint",
"mark": "node dist/unique-mark.cjs dist/*.{js,cjs,mjs} && echo mark success",
"postversion": "git push && git push --tags && npm publish",
"prepack": "pnpm build",
"preversion": "pnpm check",
"start": "pnpm dev",
"test": "vitest --run --coverage && echo test success",
"test:bench": "vitest bench",
"test:update": "vitest --run --coverage --update && echo test update success",
"test:watch": "vitest --coverage"
},
"type": "module",
"types": "./dist/shuutils.d.ts",
"version": "10.1.0"
}