-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "@zr1997/lion_utils",
"version": "1.0.0",
"description": "狮子工具库",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"dev": "rollup -w -c",
"build:types": "tsc -b ./tsconfig.json",
"build": "npm run build:types && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoleor/Lion_Utils.git"
},
"keywords": [
"utils"
],
"author": "狮子",
"license": "ISC",
"bugs": {
"url": "https://github.com/leoleor/Lion_Utils/issues"
},
"homepage": "https://github.com/leoleor/Lion_Utils#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.12.0",
"rollup-plugin-cleanup": "^3.2.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}