-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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": "has-throw",
"version": "1.0.2",
"private": false,
"description": "",
"keywords": [
"has-throw",
"has",
"throw",
"error",
"exception",
"assert",
"assertion"
],
"homepage": "https://github.com/huuyafwww/has-throw",
"bugs": {
"url": "https://github.com/huuyafwww/has-throw/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huuyafwww/has-throw.git"
},
"license": "MIT",
"type": "module",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build:watch": "pkgroll --watch",
"build": "pkgroll --minify",
"clean": "rimraf node_modules",
"lint:code": "eslint . --cache",
"lint:type": "tsc --pretty --noEmit",
"sort:package": "sort-package-json",
"test": "npm-run-all --parallel test:*",
"test:jest": "jest",
"test:jest:watch": "jest --watch",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest run --watch",
"version": "changeset",
"version:apply": "changeset version",
"version:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@huuyafwww/eslint-config-common": "^1.1.1",
"@huuyafwww/eslint-config-node": "^1.1.1",
"@huuyafwww/tsconfig-common": "^1.1.1",
"@jest/globals": "^29.7.0",
"@praha/eslint-config-definer": "^2.0.1",
"@types/node": "^22.10.10",
"eslint": "9.18.0",
"jest": "^29.7.0",
"jiti": "^2.4.2",
"lefthook": "^1.10.10",
"npm-run-all": "^4.1.5",
"pkgroll": "^2.6.1",
"sort-package-json": "^2.14.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.12.0",
"pnpm": ">=9.15.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}