-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "@coderlzw/utils",
"version": "1.0.0-0",
"description": "一个实用的 JavaScript 工具库,提供常用的函数和辅助方法",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"default": "./dist/cjs/index.cjs"
}
},
"scripts": {
"build": "bash generateIndex.sh && rollup -c",
"lint:fix": "eslint --fix",
"test": "jest",
"preversion": "npm run lint:fix && npm run build && npm run test"
},
"keywords": [
"javascript",
"utils",
"helpers",
"utility",
"functions"
],
"author": "coderlzw",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coderlzw-cn/js-utils.git"
},
"bugs": {
"url": "https://github.com/coderlzw-cn/js-utils/issues"
},
"homepage": "https://github.com/coderlzw-cn/js-utils#readme",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.0",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"tslib": "^2.7.0"
},
"engines": {
"node": ">=16.13.0"
}
}