-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@0x26e/utils",
"version": "1.0.5",
"description": "A TypeScript Utility Collection Similar to Laravel Helpers",
"keywords": [
"utils",
"typescript",
"helpers"
],
"homepage": "https://github.com/Foysal50x/js-utils",
"bugs": {
"url": "https://github.com/Foysal50x/js-utils/issues"
},
"author": "Foysal Ahmed <foysal20x@gmail.com> (https://github.com/Foysal50x)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Foysal50x/js-utils.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"build": "tsup",
"test": "vitest run",
"lint": "tsc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.7",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}