-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/causy-components.umd.js",
"module": "./dist/causy-components.es.js",
"exports": {
".": {
"import": "./dist/causy-components.es.js",
"require": "./dist/causy-components.umd.js"
}
},
"types": "./dist/types/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@causy-dev"
},
"repository": {
"type": "git",
"url": "https://github.com/causy-dev/causy-components"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
"preserve": "vite build",
"serve": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "exit 0",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-tokens": "node ./src/build/tokens.js"
},
"name": "@causy-dev/causy-components",
"version": "0.0.0",
"type": "module",
"dependencies": {
"@storybook/vue3-vite": "^8.0.5",
"@vue-flow/core": "^1.33.5",
"@vue-flow/minimap": "^1.4.0",
"vite-plugin-css-injected-by-js": "^3.5.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/test": "^8.0.5",
"@storybook/vue3": "^8.0.5",
"@tokens-studio/sd-transforms": "^0.15.2",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"storybook": "^8.0.5",
"storybook-addon-vue-mdx": "^0.1.5",
"storybook-vue-addon": "^0.4.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vue-tsc": "^1.8.11"
}
}