-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.4 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
87
88
89
90
91
92
{
"name": "@lincy/utils",
"type": "module",
"version": "0.6.1",
"packageManager": "[email protected]",
"description": "Opinionated collection of common JavaScript / TypeScript utils by LCY",
"author": "lincenying <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/lincenying/lcy-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lincenying/lcy-utils.git"
},
"bugs": {
"url": "https://github.com/lincenying/lcy-utils/issues"
},
"keywords": [
"utils"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"postpublish": "simple-open-url https://npmmirror.com/package/@lincy/utils",
"build": "rollup -c",
"dev": "nr build --watch",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && npm publish --access public",
"start": "esno src/index.ts",
"lint": "eslint . --flag unstable_ts_config",
"lint:fix": "eslint . --flag unstable_ts_config --fix",
"lint:ts": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@lincy/eslint-config": "^5.3.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.10.1",
"@types/throttle-debounce": "^5.0.2",
"bumpp": "^9.8.1",
"eslint": "^9.16.0",
"esno": "^4.8.0",
"jiti": "^2.4.1",
"lint-staged": "^15.2.10",
"p-limit": "^6.1.0",
"rollup": "^4.28.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"simple-git-hooks": "^2.11.1",
"simple-open-url": "^3.0.1",
"throttle-debounce": "5.0.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vitest": "^2.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"postcss",
"esbuild",
"terser",
"prettier"
]
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.[jt]s?(x)": "eslint --flag unstable_ts_config --fix"
}
}