-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
{
"name": "ladle-inject-custom-addons",
"version": "4.0.1",
"description": "Adds a button to the Ladle addon bar",
"files": [
"dist",
"assets"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/components/*.d.ts",
"import": "./dist/components/*.mjs",
"require": "./dist/components/*.js"
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json",
"build:watch": "pnpm build --watch",
"lint": "eslint \"**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts,jsx,tsx}\"",
"prepublish": "pnpm build",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiddenist/ladle-inject-custom-addons.git"
},
"keywords": [
"ladle",
"@ladle/react",
"custom plugin",
"custom addon",
"ladle addon",
"ladle plugin",
"addon button",
"plugin button",
"addon bar"
],
"author": "@hiddenist",
"license": "ISC",
"bugs": {
"url": "https://github.com/hiddenist/ladle-inject-custom-addons/issues"
},
"homepage": "https://github.com/hiddenist/ladle-inject-custom-addons#readme",
"peerDependencies": {
"@ladle/react": "^2",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@ladle/react": "^4.1.0",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"styled-components": "^6.1.11",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"resolutions": {
"styled-components": "^5"
}
}