-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "@lianhr12/business-tools",
"version": "1.1.0",
"description": "Business development common tools and methods encapsulation collection",
"main": "dist/index.cjs.js",
"module": "dist/index.mjs",
"scripts": {
"dev": "rimraf dist && rollup -c -w",
"build": "rimraf dist && rollup -c",
"changelog": "standard-version",
"docs": "rimraf docs && typedoc --tsconfig tsconfig.json --options typedoc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lianhr12/business-tools.git"
},
"keywords": [
"tools",
"business"
],
"author": "Rope ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/lianhr12/business-tools/issues"
},
"homepage": "https://github.com/lianhr12/business-tools#readme",
"devDependencies": {
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-uglify": "^6.0.4",
"standard-version": "^9.5.0",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"dependencies": {}
}