-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.35 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
87
88
89
{
"name": "@anephenix/ui",
"version": "0.1.7",
"description": "A collection of UI components for React web applications",
"main": "dist/",
"scripts": {
"build": "npx next build",
"build-lib": "node build.js",
"cover": "npx jest --coverage --coverageReporters=text-lcov",
"dev": "next",
"lint": "npx eslint .",
"size": "size-limit",
"start": "next start",
"prepare-patch-release": "npm run build-lib && npm run size && git add dist && npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
"publish-patch-release": "npm run prepare-patch-release && git push origin master && git push --tags",
"test": "npx jest --coverage",
"update-changelog": "node scripts/update-changelog.js"
},
"keywords": [
"react",
"ui"
],
"repository": {
"type": "git",
"url": "git://github.com/anephenix/ui.git"
},
"author": "Paul Jensen <[email protected]>",
"maintainers": [
{
"name": "Paul Jensen",
"email": "[email protected]"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm t"
}
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "250 kB"
},
{
"path": "dist/index.css",
"limit": "10 kB"
}
],
"devDependencies": {
"@anephenix/rcg": "0.0.17",
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@size-limit/esbuild": "^11.1.6",
"@size-limit/esbuild-why": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"esbuild": "^0.25.0",
"esbuild-plugin-sass": "^1.0.1",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.3",
"next": "15.2.1",
"prettier": "^3.2.5",
"react-test-renderer": "^19.0.0",
"sass": "^1.77.0",
"size-limit": "^11.1.6"
},
"dependencies": {
"clipboard-copy": "^4.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-highlight": "^0.15.0"
}
}