-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.08 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
79
80
81
82
83
84
85
86
{
"name": "promise.map",
"version": "1.1.2",
"description": "Promise.map",
"type": "module",
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"prepare": "husky",
"test": "vitest run",
"test:dev": "vitest",
"test-cover": "vitest run --coverage",
"tsd": "tsd",
"gen-readme": "swig render ./readme/readme.md > README.md && prettier --write README.md",
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"devDependencies": {
"@magicdawn/eslint-config": "^0.1.0",
"@magicdawn/prettier-config": "^0.0.4",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"chance": "^1.1.12",
"es-toolkit": "^1.30.1",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"should": "^13.2.3",
"tsd": "^0.31.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicdawn/promise.map.git"
},
"keywords": [
"promise",
"map",
"parallel"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/promise.map/issues"
},
"homepage": "https://github.com/magicdawn/promise.map#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}