-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.73 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
{
"name": "@frequency-chain/style-guide",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./styles": "./dist/styles/index.css"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:package-json": "node scripts/package.cjs",
"build:svelte": "svelte-package",
"build:static": "cp .npmignore README.md LICENSE dist/",
"build:tsc": "tsc --lib es2015 src/jsx.d.ts --outDir dist --declaration",
"build": "rm -rf ./dist && npm run build:svelte && npm run build:static && npm run build:package-json && npm run build:tsc",
"dry-run": "cd dist && npm pack --dry-run",
"publish": "cd dist && npm publish",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "npm run prettier && npm run lint:fix",
"prettier": "prettier --write src",
"prettier:check:ci": "npx prettier --check --plugin prettier-plugin-tailwindcss --plugin prettier-plugin-svelte src",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@internationalized/date": "3.9.0",
"@storybook/addon-docs": "^8.6.4",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-links": "^8.6.4",
"@storybook/addon-svelte-csf": "^5.0.0-next.28",
"@storybook/blocks": "^8.6.4",
"@storybook/manager-api": "^8.6.4",
"@storybook/svelte": "^8.6.4",
"@storybook/svelte-vite": "^8.6.4",
"@sveltejs/package": "^2.3.10",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/postcss": "^4.1.3",
"@tsconfig/svelte": "^5.0.4",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-storybook": "^0.11.4",
"eslint-plugin-svelte": "^3.1.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.6.4",
"stylelint": "^16.15.0",
"stylelint-config-standard": "^37.0.0",
"svelte-check": "^4.1.5",
"svelte-loader": "^3.2.4",
"tailwindcss": "^4.1.3",
"tw-animate-css": "^1.3.8",
"typescript-eslint": "^8.26.1",
"vite": "^5.4.4"
},
"dependencies": {
"bits-ui": "^2.9.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"svelte": "^5.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
}
}