-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
{
"name": "char-dust",
"version": "0.1.0",
"description": "convert image to ascii",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"keywords": [
"char",
"ascii"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:demo": "cd demo && npm run build",
"dev": "cd demo && npm run dev",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"prepublishOnly": "npm run build"
},
"author": {
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn",
"email": "me@yunyoujun.cn"
},
"repository": {
"url": "https://github.com/YunYouJun/char-dust/",
"type": "git"
},
"license": "MIT",
"dependencies": {
"@ctrl/tinycolor": "^3.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"@types/node": "^17.0.18",
"eslint": "^8.9.0",
"lint-staged": "^12.3.4",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{vue,ts}": [
"eslint --fix"
]
}
}