-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "@tiply-dev/tiply",
"homepage": "https://github.com/tiply-org/tiply#readme",
"repository": {
"type": "git",
"url": "https://github.com/tiply-org/tiply.git"
},
"bugs": {
"url": "https://github.com/tiply-org/tiply/issues"
},
"version": "1.0.2",
"description": "A modern React help system",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup && pnpm copy-css",
"copy-css": "cpy src/styles/tiply.css dist/styles.css",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build"
},
"keywords": [
"react",
"tooltip",
"help",
"ui",
"component",
"design-system"
],
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-error-boundary": "^6.1.2",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"strip-indent": "^4.1.1"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"cpy-cli": "^7.0.0",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.13.0+sha512.88d94724d8f2e6c186744a5584c6e59ecac869ec7ba15e9cb4cd628e8dc7066820b2481d8ee3b51ea8da323a7378068aa58c556a3720d32b7c20a051d088363a"
}