forked from toss/react-simplikit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.32 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.32 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
79
80
81
82
83
84
85
86
{
"name": "react-simplikit",
"version": "0.0.9",
"main": "./src/index.ts",
"sideEffects": false,
"files": [
"dist/**/*",
"esm/**/*"
],
"scripts": {
"scaffold": "tsx .scripts/index.ts scaffold",
"docs:gen": "tsx .scripts/index.ts generate-docs",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier:fix": "prettier --write .",
"test": "vitest run",
"test:coverage": "yarn vitest run --coverage",
"prepack": "tsup"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./esm/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./esm/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
}
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^2.1.8",
"commander": "^13.1.0",
"comment-parser": "^1.4.1",
"corepack": "^0.30.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"fast-glob": "^3.3.3",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"listr2": "^8.2.5",
"nanoid": "^5.1.5",
"ora": "^8.2.0",
"prettier": "^3.4.2",
"prettier-plugin-sort-re-exports": "^0.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"packageManager": "yarn@4.5.3",
"dependencies": {
"openai": "^4.93.0"
}
}