-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.08 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@kakuilan/js-helper",
"type": "module",
"version": "1.0.2",
"author": "kakuilan",
"license": "MIT",
"description": "K`s javascript helper/library/utils",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kakuilan/js-helper.git"
},
"bugs": {
"url": "https://github.com/kakuilan/js-helper/issues"
},
"homepage": "https://github.com/kakuilan/js-helper#readme",
"files": [
"dist"
],
"keywords": [
"js",
"typescript",
"helper",
"library",
"utils"
],
"scripts": {
"prepare": "husky install",
"start:cjs": "node ./dist/index.cjs",
"start:esm": "node ./dist/index.mjs",
"dev": "nodemon",
"develop": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"clean": "rimraf build && rimraf dist",
"build": "swc ./src -d build",
"build:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier": "prettier '**/*.{ts,json,md}'",
"prettier:write": "prettier --write '**/*.{ts,json,md}'",
"type-check": "tsc --noEmit",
"lint-staged": "lint-staged",
"release": "semantic-release",
"bundle": "unbuild"
},
"dependencies": {
"base64-js": "~1",
"js-md5": "*",
"lodash": "~4",
"qs": "~6",
"sprintf-js": "~1",
"url-parse": "~1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.5",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/js-md5": "^0.7.2",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.11",
"@types/qs": "^6.9.15",
"@types/sprintf-js": "^1.1.4",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"regenerator-runtime": "^0.14.0",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"resolutions": {
"wrap-ansi": "^7.0.0"
}
}