-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.12 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.12 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "pine-design-system",
"version": "1.0.2",
"type": "module",
"license": "MIT",
"description": "Design system with token-driven theming and accessible React components",
"author": "3o14",
"repository": {
"type": "git",
"url": "https://github.com/3o14/pine-design-system.git"
},
"bugs": {
"url": "https://github.com/3o14/pine-design-system/issues"
},
"homepage": "https://3o14.github.io/pine-design-system",
"keywords": [
"react",
"ui",
"components",
"design-system",
"design-tokens",
"theming",
"typescript"
],
"main": "./dist/pine-design-system.cjs.js",
"module": "./dist/pine-design-system.es.js",
"types": "./dist/components/index.d.ts",
"exports": {
".": {
"import": "./dist/pine-design-system.es.js",
"require": "./dist/pine-design-system.cjs.js",
"types": "./dist/components/index.d.ts"
},
"./style.css": "./dist/style.css",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json",
"build:lib": "pnpm run build",
"lint": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "pnpm run sync-readme && storybook build",
"sync-readme": "node scripts/sync-readme.js",
"docs": "cd docs && next dev",
"docs:build": "cd docs && next build",
"prepublishOnly": "pnpm run build:lib",
"changeset": "changeset",
"changeset:auto": "./scripts/auto-changeset.sh",
"version": "changeset version",
"release": "pnpm run version && pnpm run build:lib && npm publish --access public",
"pr": "./scripts/create-pr.sh"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"clsx": "^2.1.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.39.1",
"@storybook/addon-a11y": "^8",
"@storybook/addon-essentials": "^8",
"@storybook/addon-interactions": "^8",
"@storybook/addon-storysource": "^8.6.14",
"@storybook/blocks": "^8",
"@storybook/react": "^8",
"@storybook/react-vite": "^8",
"@storybook/test": "^8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/vite-plugin": "^5.1.1",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^10.0.7",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"next": "^16.1.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8",
"storybook-dark-mode": "^4.0.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3",
"vite": "^5.4.11",
"vitest": "^4.0.16"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}