-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "@odinlin/utils",
"version": "0.0.2",
"description": "Opinionated collection of common JavaScript / TypeScript utils by @odinlin",
"author": "odinlin <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/topazur/utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/topazur/utils.git"
},
"bugs": {
"url": "https://github.com/topazur/utils/issues"
},
"keywords": [
"utils"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"prepublishOnly": "nr build",
"start": "esno src/index.ts",
"build": "rollup -c",
"dev": "nr build --watch",
"build:pkgroll": "pkgroll --minify",
"dev:pkgroll": "pkgroll --watch",
"release": "bumpp --commit --push --tag && npm publish",
"typecheck": "tsc --noEmit",
"test": "vitest",
"lint": "eslint --fix --ext .ts ."
},
"dependencies": {
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/node": "^18.7.18",
"@types/throttle-debounce": "^5.0.0",
"bumpp": "^8.2.1",
"eslint": "^8.23.1",
"esno": "^0.16.3",
"pkgroll": "^1.4.0",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"typescript": "^4.8.3",
"vitest": "^0.23.4"
},
"eslintIgnore": [
"dist",
"node_modules",
"*.d.ts"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}