-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"private": true,
"version": "0.0.10-dev.2",
"description": "Collects some functions those I used frequently.",
"main": "browser/index.js",
"module": "browser/index.esm.js",
"keywords": [
"utils",
"javascript function utils",
"tool function",
"js-utils",
"JSUtils"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node ./src/index.js",
"build:cli": "rollup -c",
"build:pnpm": "pnpm --filter ./packages/** run build",
"build": "node ./scripts/build.js",
"pub": "cd ./packages/main && pnpm publish --access public",
"lint": "eslint src --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@alanlee97/js-utils": "workspace:*",
"@alanlee97/utils-browser": "workspace:*",
"@alanlee97/utils-move-info": "workspace:*",
"@alanlee97/utils-node": "workspace:*",
"@alanlee97/utils-common": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-alanlee": "0.0.1",
"eslint-plugin-import": "^2.28.1",
"rollup": "^3.28.0"
}
}