-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.39 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.39 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
{
"name": "react-autonumeric",
"description": "AutoNumeric-Powered React Components. AutoNumeric is a powerful library that automatically format numbers and currencies. React-AutoNumeric brings that power to React.",
"version": "2.1.1",
"type": "module",
"browser": "dist/index.js",
"main": "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": "typedoc && npm run build_demo",
"format": "eslint --fix . && prettier . --write",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 && prettier . --check",
"prepack": "npm run clean && npm run compile",
"preview": "vite preview",
"test": "vitest run --typecheck",
"test-all": "npm run lint && npm run compile && npm run test-once && npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8hobbies/react-autonumeric.git"
},
"author": "8 Hobbies, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/8hobbies/react-autonumeric/issues"
},
"homepage": "https://react-autonumeric.8hob.io",
"keywords": [
"react",
"autonumeric"
],
"dependencies": {
"autonumeric": "^4.10.9"
},
"peerDependencies": {
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0"
},
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "7.0.0",
"@8hobbies/eslint-conf-react-baseline": "3.0.0",
"@8hobbies/typedoc-plugin-404": "3.2.1",
"@8hobbies/typedoc-plugin-plausible": "2.2.0",
"@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",
"bootstrap": "5.3.8",
"jsdom": "29.0.1",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"typedoc": "0.27.9",
"typedoc-plugin-mdn-links": "5.1.1",
"typedoc-plugin-rename-defaults": "0.7.3",
"typescript": "5.8.3",
"typescript-eslint": "8.57.1",
"vite": "8.0.1",
"vitest": "4.1.0"
}
}