-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "@vsirrr/seal",
"version": "0.1.4",
"description": "使用 canvas 绘制公司公章、个人印章",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"prepare": "husky install",
"dev": "rollup -w -c --environment MODE:dev",
"build": "rollup -c --environment MODE:prod",
"prepublishOnly": "npm run build"
},
"keywords": [
"canvas",
"seal",
"印章",
"公司公章",
"个人印章"
],
"author": "VSirrr",
"repository": {
"type": "git",
"url": "git+https://github.com/VSirrr/seal.git"
},
"homepage": "https://github.com/VSirrr/seal",
"license": "Apache License",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-babel": "^5.3.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.75.0",
"rollup-plugin-terser": "^7.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "none",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{js,json,html,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public"
}
}