-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 947 Bytes
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
{
"name": "@joivo/design-system",
"version": "0.2.0",
"type": "module",
"description": "Framework-agnostic design tokens, utilities, and animations",
"exports": {
".": "./src/index.css",
"./tokens": "./src/tokens/index.css",
"./utilities": "./src/utilities/index.css",
"./animations": "./src/animations/index.css",
"./themes/dark": "./src/themes/dark.css",
"./themes/light": "./src/themes/light.css",
"./tailwind-plugin": {
"types": "./dist/tailwind-plugin.d.ts",
"import": "./dist/tailwind-plugin.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.tailwind.json",
"lint": "stylelint 'src/**/*.css'",
"dev": "vite"
},
"devDependencies": {
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "~5.9.3",
"vite": "^7.2.4"
},
"files": [
"src/",
"dist/tailwind-plugin.js",
"dist/tailwind-plugin.d.ts",
"README.md"
]
}