-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "@inottn/miniposter",
"version": "0.0.11",
"packageManager": "pnpm@8.7.0",
"description": "使用 canvas 轻松绘制小程序海报,支持 微信 / 支付宝小程序",
"author": "inottn<https://github.com/inottn>",
"homepage": "https://github.com/inottn/miniposter",
"main": "dist/index-cjs.js",
"module": "dist/index-esm.js",
"types": "index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index-esm.js",
"require": "./dist/index-cjs.js"
}
},
"sideEffects": false,
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "eslint ./src --ext .js,.ts,.mjs,.cjs",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"prepare": "husky install"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"nano-staged": {
"*.{ts,tsx,js,mjs,less}": "prettier --write",
"*.{ts,tsx,js,mjs}": "eslint --fix"
},
"keywords": [
"miniprogram",
"canvas",
"poster",
"weapp",
"weixin",
"typescript",
"js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/inottn/miniposter/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:inottn/miniposter.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@inottn/fp-utils": "^0.4.3"
}
}