@m4l/core 0.1.3 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -60
package/package.json
CHANGED
|
@@ -1,82 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "M4L Team",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"dev": "vite",
|
|
8
|
-
"build": "tsc && vite build && yarn build:copy-files",
|
|
9
|
-
"preview": "vite preview",
|
|
10
|
-
"lint": "npx eslint src",
|
|
11
|
-
"lint:fix": "npm run lint -- --fix",
|
|
12
|
-
"prettier": "npx prettier src --check",
|
|
13
|
-
"prettier:fix": "npm run prettier -- --write",
|
|
14
|
-
"format": "npm run prettier:fix && npm run lint:fix",
|
|
15
|
-
"build:copy-files": "node ../../scripts/copy-files.js",
|
|
16
|
-
"release": "yarn build && npm publish build",
|
|
17
|
-
"test": "vitest",
|
|
18
|
-
"coverage": "vitest run --coverage",
|
|
19
|
-
"Oldprepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
|
|
20
|
-
},
|
|
21
6
|
"dependencies": {
|
|
22
7
|
"qs": "^6.11.0"
|
|
23
8
|
},
|
|
24
9
|
"peerDependencies": {
|
|
25
10
|
"react": ">=18"
|
|
26
11
|
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@testing-library/dom": "^8.17.1",
|
|
29
|
-
"@testing-library/jest-dom": "^5.16.4",
|
|
30
|
-
"@testing-library/react": "^13.3.0",
|
|
31
|
-
"@testing-library/user-event": "^14.2.1",
|
|
32
|
-
"@types/node": "^17.0.40",
|
|
33
|
-
"@types/nprogress": "^0.2.0",
|
|
34
|
-
"@types/numeral": "^2.0.2",
|
|
35
|
-
"@types/qs": "^6.9.7",
|
|
36
|
-
"@types/react": "^18.0.0",
|
|
37
|
-
"@types/react-dom": "^18.0.0",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
39
|
-
"@typescript-eslint/parser": "^5.27.1",
|
|
40
|
-
"@vitejs/plugin-react": "^1.3.0",
|
|
41
|
-
"axios": "^0.27.2",
|
|
42
|
-
"eslint": "^8.17.0",
|
|
43
|
-
"eslint-config-prettier": "^8.5.0",
|
|
44
|
-
"eslint-import-resolver-alias": "^1.1.2",
|
|
45
|
-
"eslint-plugin-import": "^2.26.0",
|
|
46
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
47
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
48
|
-
"eslint-plugin-react": "^7.30.0",
|
|
49
|
-
"eslint-plugin-react-hooks": "^4.5.0",
|
|
50
|
-
"eslint-plugin-unused-imports": "^2.0.0",
|
|
51
|
-
"history": "^5.3.0",
|
|
52
|
-
"jsdom": "^20.0.0",
|
|
53
|
-
"json": "^11.0.0",
|
|
54
|
-
"prettier": "^2.6.2",
|
|
55
|
-
"react": "^18.2.0",
|
|
56
|
-
"react-dom": "^18.2.0",
|
|
57
|
-
"react-toastify": "^9.0.5",
|
|
58
|
-
"rollup": "^2.79.0",
|
|
59
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
60
|
-
"snakecase-keys": "^5.4.2",
|
|
61
|
-
"typescript": "^4.6.3",
|
|
62
|
-
"vite": "2.9.9",
|
|
63
|
-
"vite-plugin-dts": "^1.2.0",
|
|
64
|
-
"vite-plugin-mkcert": "^1.9.0",
|
|
65
|
-
"vitest": "^0.17.1"
|
|
66
|
-
},
|
|
67
12
|
"files": [
|
|
68
|
-
"
|
|
13
|
+
"../dist"
|
|
69
14
|
],
|
|
70
15
|
"source": "src/index.ts",
|
|
71
16
|
"main": "./dist/index.js",
|
|
72
17
|
"module": "./dist/index.js",
|
|
73
18
|
"type": "module",
|
|
74
|
-
"types": "./
|
|
19
|
+
"types": "./index.d.ts",
|
|
75
20
|
"sideEffects": false,
|
|
76
21
|
"publishConfig": {
|
|
77
22
|
"access": "public"
|
|
78
23
|
},
|
|
79
24
|
"engines": {
|
|
80
25
|
"node": ">=12.0.0"
|
|
81
|
-
}
|
|
82
|
-
|
|
26
|
+
},
|
|
27
|
+
"private": false
|
|
28
|
+
}
|