-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.66 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
{
"name": "@frequency-chain/style-guide",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./tailwind.config": "./dist/tailwind.config.js",
"./styles/index.css": "./dist/styles/index.css"
},
"style": "./src/lib/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 tailwind.config.ts 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 --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss src",
"prettier:check:ci": "npx prettier --check --plugin prettier-plugin-tailwindcss --plugin prettier-plugin-svelte src",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@storybook/addon-docs": "^8.5.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-svelte-csf": "^4.2.0",
"@storybook/blocks": "^8.5.0",
"@storybook/manager-api": "^8.5.0",
"@storybook/svelte": "^8.5.0",
"@storybook/svelte-vite": "^8.5.0",
"@sveltejs/package": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@tsconfig/svelte": "^5.0.4",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-storybook": "^0.6.10",
"eslint-plugin-svelte": "^2.44.0",
"postcss": "^8.4.21",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"storybook": "^8.3.3",
"stylelint": "^15.10.0",
"stylelint-config-standard": "^31.0.0",
"svelte-check": "^4.1.0",
"svelte-loader": "^3.2.3",
"tailwindcss": "^3.3.0",
"typescript-eslint": "^8.8.0",
"vite": "^4.4.9"
},
"dependencies": {
"bits-ui": "^0.22.0",
"clsx": "^2.1.1",
"svelte": "^4.2.19",
"tailwind-merge": "^2.5.2"
}
}