-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.49 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.49 KB
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
{
"name": "material-ui-autonumeric",
"description": "AutoNumeric-Powered Material UI Components. AutoNumeric is a powerful library that automatically formats numbers and currencies. Material UI-AutoNumeric brings that power to Material UI.",
"version": "3.0.0",
"type": "module",
"main": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/*.d.ts",
"/dist/*.js"
],
"scripts": {
"build_demo": "npm run compile && vite build",
"clean": "rimraf dist/",
"dev": "vite",
"compile": "tsc --build . src/lib src/test src/demo",
"coverage": "vitest run --coverage --typecheck",
"doc": "cd docs && npm install && npm run build && cd .. && npm run build_demo",
"format": "npm run compile && eslint --fix . && prettier . --write",
"lint": "npm run compile && eslint . --report-unused-disable-directives --max-warnings 0 && prettier . --check",
"prepack": "npm run clean && npm run compile",
"prepublishOnly": "ncp docs/src/pages/index.md README.md",
"preview": "vite preview",
"test": "npm run coverage",
"test-all": "npm run lint && npm run compile && npm run test-once && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8hobbies/material-ui-autonumeric.git"
},
"author": "8 Hobbies, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/8hobbies/material-ui-autonumeric/issues"
},
"homepage": "https://material-ui-autonumeric.8hob.io",
"keywords": [
"react",
"mui",
"material-ui",
"autonumeric"
],
"dependencies": {
"react-autonumeric": "^2.1.1"
},
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "7.0.0",
"@8hobbies/eslint-conf-react-baseline": "3.0.0",
"@emotion/styled": "11.14.1",
"@mui/material": "7.3.9",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/lodash-es": "4.17.12",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.1.0",
"jsdom": "29.0.1",
"ncp": "2.0.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vite": "8.0.5",
"vitest": "4.1.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"peerDependencies": {
"@mui/material": "^7.3.9",
"react": "^18.3.1 || ^19.0.0"
}
}