-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.48 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.48 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
78
{
"name": "@solved-ac/ui-react",
"version": "0.9.0",
"description": "React component library used by solved.ac",
"author": "shiftpsh",
"license": "MIT",
"repository": "solved-ac/ui-react",
"homepage": "https://github.com/solved-ac/ui-react",
"main": "./dist/index.js",
"source": "./src/index.tsx",
"module": "./dist/index.modern.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rimraf --no-glob ./dist && microbundle --no-compress --format modern,cjs --jsx React.createElement",
"start": "rimraf --no-glob ./dist && microbundle watch --no-compress --format modern,cjs --jsx React.createElement",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"@floating-ui/react": "^0.24.3",
"framer-motion": ">=12",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint-react/eslint-plugin": "^2.8.1",
"@eslint/js": "^9.39.2",
"@floating-ui/react": "^0.24.3",
"@tabler/icons-react": "^2.11.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^25.1.4",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"cross-env": "^7.0.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"framer-motion": "^12.34.3",
"gh-pages": "^2.2.0",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.5",
"polished": "^4.2.2",
"prettier": "^2.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}