-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.1 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
{
"name": "@fett/utils",
"version": "0.0.6",
"description": "js utils",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "chrissong1994 <18557511748@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisSong1994/utils/issues"
},
"homepage": "https://github.com/ChrisSong1994/utils",
"scripts": {
"dev": "rollup -c -w --environment NODE_ENV:development",
"build": "npm run clean && rollup -c --environment NODE_ENV:production",
"example:esm": "cd examples/esm && npm run dev",
"example:umd": "npm run build && serve . -p 3003",
"clean": "rimraf dist",
"lint": "eslint src --ext .ts",
"test": "jest",
"commit": "cz",
"prettier": "prettier --write 'src/**/*.ts'",
"prepublish": "npm run build",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git@github.com:ChrisSong1994/utils.git"
},
"keywords": [
"npm",
"package",
"template",
"rollup"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"src/**/*.ts?(x)": [
"prettier --write",
"npm run lint"
]
},
"dependencies": {
"dayjs": "^1.11.13"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"serve": "^14.2.3",
"ts-jest": "^29.2.3",
"tslib": "^2.8.1",
"typescript": "^5.5.3"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}