-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
104 lines (104 loc) · 3.31 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@styleless-ui/react",
"version": "1.0.0-rc.11",
"description": "Completely unstyled, headless and accessible React UI components.",
"author": "mimshins <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/styleless-ui/react-styleless-ui.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"ui",
"styleless-ui",
"styleless",
"headless",
"unstyled",
"component library",
"react component library",
"react"
],
"scripts": {
"dev": "next dev",
"prod": "next build && next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tsc --project tsconfig.lint.json && eslint \"**/*.{ts,tsx}\" --config .eslintrc",
"clear": "rimraf dist",
"prebuild": "npm-run-all clear lint test",
"build": "npm-run-all build:transpile build:minify build:package",
"build:transpile": "npm-run-all build:transpile:cjs build:transpile:esm",
"build:transpile:cjs": "tsc -p tsconfig.cjs.json",
"build:transpile:esm": "tsc -p tsconfig.esm.json",
"build:package": "tsx scripts/build-package.ts",
"build:minify": "tsx scripts/minify-package.ts"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@types/react-is": "^18.2.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"classnames": "^2.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"fast-glob": "^3.3.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^14.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"terser": "^5.29.2",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"@utilityjs/use-controlled-prop": "^1.1.2",
"@utilityjs/use-deterministic-id": "^1.2.0",
"@utilityjs/use-event-listener": "^1.0.6",
"@utilityjs/use-forked-refs": "^1.0.2",
"@utilityjs/use-get-latest": "^1.0.2",
"@utilityjs/use-is-mounted": "^1.0.2",
"@utilityjs/use-is-server-handoff-complete": "^1.0.0",
"@utilityjs/use-on-change": "^1.0.3",
"@utilityjs/use-on-outside-click": "^1.0.5",
"@utilityjs/use-previous-value": "^1.0.1",
"@utilityjs/use-register-node-ref": "^1.1.0",
"@utilityjs/use-scroll-guard": "^1.0.0",
"dom-accessibility-api": "^0.6.3",
"react-is": "^18.2.0"
}
}