-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.28 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@near-pagoda/ui",
"version": "2.0.17",
"description": "A React component library that implements the official NEAR design system.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/near/pagoda-ui.git"
},
"keywords": [
"react",
"component",
"library",
"near",
"pagoda"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"lint": "eslint ./src/**/*.ts*",
"lint:fix": "eslint . --fix",
"lint:strict": "pnpm lint --max-warnings 0",
"pre-commit": "pnpm format && pnpm lint:strict && pnpm ts:check",
"pre-publish": "pnpm pre-commit && pnpm test",
"prepare": "husky",
"repomix": "repomix --include 'src/**/*.ts,src/**/*.tsx,src/**/*.md'",
"test": "vitest run",
"test:watch": "vitest",
"ts:check": "tsc --noEmit --incremental"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.1.1",
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.cjs.js"
}
},
"./*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"zustand": "^4"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.5",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-focus-scope": "^1.1.0",
"@radix-ui/react-roving-focus": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"downshift": "^9.0.6",
"lodash-es": "^4.17.21",
"next-themes": "^0.4.3",
"repomix": "^0.2.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.1.3",
"jsdom": "^24.1.1",
"next": "^15.0.2",
"postcss": "^8.4.40",
"postcss-preset-env": "^7.6.0",
"postcss-scss": "^4.0.9",
"prettier": "^3",
"rollup": "^4.24.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.8",
"tslib": "^2.6.2",
"typescript": "^5",
"vitest": "^2.0.5"
}
}