-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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": "iflyjs",
"private": false,
"version": "0.1.8",
"type": "module",
"description": "更好用的JS函数库, 值得信任的JS函数库",
"main": "dist/iflyjs.js",
"types": "dist/types/main.d.ts",
"module": "dist/iflyjs.js",
"exports": {
".": {
"import": "./dist/iflyjs.js",
"require": "./dist/iflyjs.umd.cjs"
}
},
"keywords": [
"iflyjs",
"ifly",
"JS工具库",
"JS函数库",
"js-helper",
"js-utils",
"js-tool",
"js-lib",
"lodash"
],
"publisher": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/itmier/iflyjs.git"
},
"author": "Tmier",
"license": "MIT",
"homepage": "https://ifly.yunfei.show",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc && tsc-alias",
"preview": "vite preview",
"dev:docs": "vitepress dev docs --port 2078",
"build:docs": "vitepress build docs",
"cz": "git add . && czg",
"changelog": "picklog -l -w CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/node": "^18.13.0",
"czg": "^1.4.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vitepress": "^1.0.1"
}
}