-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ffeach",
"version": "1.1.0",
"scripts": {
"lint:prettier": "prettier src/ -w",
"lint:stylelint-prettier-check": "stylelint-config-prettier-check",
"lint:stylelint": "stylelint src/**/*.{scss,css} --fix",
"lint:eslint-check": "eslint src/ --ext .jsx,.js,ts,tsx",
"lint:eslint": "eslint src/ --ext .jsx,.js,ts,tsx --fix",
"build:scss": "sass src/:dist/",
"build:postcss": "postcss dist/**/*.css -r",
"build:tsc": "tsc -b",
"build:babel": "babel src/ -d dist/ -s",
"build:webpack": "webpack --mode production",
"build:webpack-dev": "webpack --mode development",
"dev:serve": "webpack serve --mode development"
},
"keywords": [
"slicing",
"file",
"split file"
],
"description": "Large file cutting and slicing tools.",
"main": "dist/main.bundle.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
],
"bin": {},
"author": "SystemLighht",
"license": "MIT",
"homepage": "https://github.com/SystemLight/ffeach#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SystemLight/ffeach"
},
"bugs": {
"url": "https://github.com/SystemLight/ffeach/issues"
},
"engines": {
"node": ">=16.15.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/runtime-corejs3": "^7.18.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.23.1",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-preset-env": "^7.7.1",
"prettier": "^2.7.0",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"terser-webpack-plugin": "^5.3.3",
"thread-loader": "^3.0.4",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpackbar": "^5.0.2"
},
"dependencies": {
"spark-md5": "^3.0.2"
}
}