-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.95 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.95 KB
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
110
111
112
113
114
115
116
117
118
{
"name": "happykit",
"version": "2.4.1",
"description": "happykit next refactor width rollup",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config rollup.dev.config.js --watch",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"test": "jest --coverage",
"format": "prettier --write src/**/*.ts",
"lint": "tslint -p tsconfig.json",
"doc": "standard-version",
"release": "git push --follow-tags origin master && yarn build && yarn publish",
"build:example": "sh scripts/build-example.sh"
},
"main": "lib/happykit.cjs.js",
"module": "lib/happykit.esm.js",
"unpkg": "lib/happykit.umd.min.js",
"jsdelivr": "lib/happykit.umd.min.js",
"types": "lib/happykit.d.ts",
"exports": {
"require": "./lib/happykit.cjs.js",
"import": "./lib/happykit.esm.js",
"default": "./lib/happykit.esm.js"
},
"files": [
"lib",
"README.md"
],
"keywords": [
"vue3js",
"admin",
"framework"
],
"contributors": [
{
"name": "pumelotea",
"email": "zf_722@yeah.net"
}
],
"bugs": {
"url": "https://github.com/pumelotea/happykit-next/issues",
"email": "zf_722@yeah.net"
},
"author": "pumelotea",
"license": "Apache",
"repository": {
"type": "git",
"url": "https://github.com/pumelotea/happykit-next.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint -p tsconfig.json",
"prettier --write src/**/*.ts"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"canvas": "^2.9.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.25",
"esbuild-register": "^3.3.2",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rollup": "^2.69.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {}
}