-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.84 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.84 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@macrobe/parallel",
"version": "1.1.1",
"type": "module",
"description": "Functional utility library for modern TypeScript, ESM, ES6+!",
"author": "Igor Suvorov <hi@isuvorov.com> (https://github.com/isuvorov)",
"private": false,
"scripts": {
"build:tsc": " rm -rf lib && tsc",
"build:tsup": " tsup",
"build:tsdown": " tsdown",
"build:bunup": " bunup",
"build:tsc:release": " rm -rf lib && tsc --outDir lib",
"build:tsdown:release": "tsdown --out-dir lib",
"build": " npm run build:tsdown:release",
"build:all": " npm run build:bunup && npm run build:tsup && npm run build:tsdown && npm run build:tsc",
"dev": " tsdown --watch",
"test:node": " node --import=tsx --test tests/*.test.ts",
"test:node:watch": " node --import=tsx --test --watch tests/*.test.ts",
"test:lint": " biome lint",
"test:size": " size-limit",
"test": " npm run test:lint && npm run test:node && npm run test:size",
"test:watch": " npm run test:node:watch",
"fix:lint": " biome check --write",
"fix": " npm run fix:lint",
"version:patch": " npm version patch && git push && git push --tags",
"version:release": " semantic-release --no-ci --dry-run ",
"release": " npm run build && npm run test && npm run version:release && npm publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/node": "^24.9.1",
"bunup": "^0.15.12",
"semantic-release": "^25.0.1",
"size-limit": "^11.2.0",
"tsdown": "^0.15.11",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "5.9.3"
},
"//": "///////////========================/////////========================/////////========================/////////",
"files": [
"lib",
"cjs",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"import": "./lib/*.js",
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
}
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "0.4kb"
},
{
"path": "lib/delay.js",
"limit": "0.4kb"
},
{
"path": "lib/parallel.js",
"limit": "0.4kb"
}
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"pnpm-lock.yaml",
"CHANGELOG.md"
],
"message": "chore(release): 🎉 v${nextRelease.version}\n\n${nextRelease.notes}\n\n[skip ci]"
}
]
]
},
"///": "//////////========================/////////========================/////////========================/////////",
"repository": {
"type": "git",
"url": "git+https://github.com/ycmds/release-test.git"
},
"homepage": "https://github.com/ycmds/release-test",
"bugs": "https://github.com/ycmds/release-test/issues",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"utility",
"library",
"typescript",
"esm",
"es6",
"functional",
"programming",
"utils",
"helpers"
],
"////": "/////////========================/////////========================/////////========================/////////"
}