-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 3.03 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
{
"name": "ts-utils-monorepo",
"private": true,
"version": "5.0.1-beta.1",
"description": "utility function工具函数 ts/js 库",
"sideEffects": false,
"scripts": {
"ru": "rollup -c --noConflict",
"clean": "rimraf lib-* types coverage",
"pub": "npm publish --access=public",
"test": "jest",
"cov": "jest --coverage",
"cov-no-cache": "jest --coverage --no-cache",
"dev": "vite --port 8080",
"clear_jest": "jest --clearCache",
"lint": "eslint packages",
"prettier-check": "prettier packages __test__ --check",
"lint-check": "run-p lint prettier-check",
"build": "node scripts/build.js -t",
"ts-check": "tsc --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js",
"new-pkg": "node scripts/new-pkg.js",
"typedoc:build": "typedoc --plugin @mxssfd/typedoc-theme --theme my-theme",
"typedoc:deploy": "gh-pages -d docs-html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mengxinssfd/ts-utils.git"
},
"keywords": [
"typscript",
"javascript",
"utils",
"utility function",
"工具函数"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@microsoft/api-extractor": "7.20.1",
"@mxssfd/core": "5.0.1-beta.1",
"@mxssfd/typedoc-theme": "^1.0.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"@types/node": "^16.11.42",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"core-js": "^3.23.3",
"enquirer": "^2.3.6",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"minimist": "^1.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-polyfill-node": "^0.9.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"semver": "^7.3.7",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.21",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"author": "dyh",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengxinssfd/ts-utils/issues"
},
"homepage": "https://github.com/mengxinssfd/ts-utils#readme",
"exports": {
".": {
"import": "./lib-es/index.js",
"require": "./lib-cjs/index.js"
},
"./": "./"
}
}