-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.61 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
87
88
89
90
91
92
{
"name": "@roseline124/react-tree",
"version": "0.0.5-alpha.0",
"private": false,
"description": "A customizable, accessible React Tree component built with TypeScript",
"author": "roseline124 <guseod24@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"tree",
"component",
"typescript",
"accessible",
"ui",
"nested",
"hierarchy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roseline124/react-tree.git"
},
"bugs": {
"url": "https://github.com/roseline124/react-tree/issues"
},
"homepage": "https://github.com/roseline124/react-tree#readme",
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"dev": "tsup --watch",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run clean && npm run build",
"release": "semantic-release",
"build-storybook": "storybook build",
"version:alpha": "npm version prerelease --preid=alpha --no-git-tag-version",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@storybook/addon-docs": "^9.1.4",
"@storybook/react-vite": "^9.1.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "9.0.18",
"prettier": "^3.3.0",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"storybook": "^9.1.4",
"tslib": "^2.6.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
}
}