-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.64 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.64 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
{
"name": "@lightsparkdev/origin",
"version": "0.14.0",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Origin Design System v2 - Base UI + Figma-first approach",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lightsparkdev/origin.git"
},
"homepage": "https://github.com/lightsparkdev/origin#readme",
"bugs": {
"url": "https://github.com/lightsparkdev/origin/issues"
},
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./styles.css": "./dist/styles.css",
"./tokens/*": "./src/tokens/*"
},
"files": [
"dist/",
"src/components/",
"src/tokens/",
"src/lib/",
"src/index.ts",
"public/fonts/",
"skills/",
"README.md"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:styles": "sass src/styles/public.scss dist/styles.css --no-source-map",
"start": "next start",
"lint": "eslint src/ && stylelint 'src/**/*.scss'",
"lint:styles": "stylelint 'src/**/*.scss'",
"lint:package": "publint",
"lint:types": "attw --pack . --ignore-rules cjs-resolves-to-esm internal-resolution-error --exclude-entrypoints ./styles.css",
"lint:publish": "npm run build:styles && npm run lint:package && npm run lint:types",
"test": "playwright test -c playwright-ct.config.ts",
"test:ui": "playwright test -c playwright-ct.config.ts --ui",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:all": "npm run test:unit && npm run test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"tokens:build": "node scripts/build-tokens.js",
"figma:styles": "npx tsx tools/figma-styles/fetch-styles.ts",
"figma:node": "npx tsx tools/figma-styles/fetch-node-css.ts",
"check:baseui": "node scripts/check-baseui-version.js",
"patch:playwright": "node scripts/patch-playwright-ct.js",
"icons:extract": "node scripts/extract-icons.mjs",
"prepack": "npm run build:styles"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@base-ui/utils": "^0.2.6",
"@tanstack/react-table": "^8.21.3",
"ajv": "^8.18.0",
"clsx": "^2.1.1"
},
"peerDependencies": {
"next": ">=14",
"react": ">=18",
"react-dom": ">=18"
},
"peerDependenciesMeta": {
"sass": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@axe-core/playwright": "^4.11.0",
"@central-icons-react/round-filled-radius-3-stroke-1.5": "^1.1.153",
"@central-icons-react/round-outlined-radius-0-stroke-1.5": "^1.1.153",
"@central-icons-react/round-outlined-radius-3-stroke-1.5": "^1.1.153",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.0.0",
"@playwright/experimental-ct-react": "^1.57.0",
"@storybook/nextjs": "^10.1.10",
"@storybook/react": "^10.1.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.1.2",
"dotenv": "^17.2.3",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.4.0",
"match-sorter": "^8.2.0",
"next": "^16.1.6",
"publint": "^0.3.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.80.0",
"storybook": "^10.1.10",
"stylelint": "^17.1.1",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.17"
}
}