-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
72 lines (72 loc) · 2.35 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
71
72
{
"name": "fastool",
"version": "0.1.8",
"description": "一个短小而精悍的现代JavaScript使用工具库",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"types": "dist/index.d.ts",
"jsname": "fastool",
"scripts": {
"dev": " cross-env NODE_ENV=dev rollup -c -w",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c",
"release": "pnpx semantic-release",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"homepage": "",
"bugs": "https://github.com/tobe-fe-dalao/fastool/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/tobe-fe-dalao/fastool.git"
},
"author": "BlindMonk",
"license": "Apache-2.0",
"files": [
"dist",
"types",
"index.js"
],
"keywords": [
""
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.21.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-eslint": "^8.0.5",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitepress": "1.0.0-alpha.47"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^17.0.45",
"cross-env": "^7.0.3",
"rimraf": "^4.1.2",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-uglify": "^6.0.4"
}
}