-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
108 lines (108 loc) · 3.56 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
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
{
"name": "@ownego/polaris-vue",
"version": "2.1.13",
"polaris_version": "13.9.0",
"description": "Shopify Polaris 12 - UI library for Vue 3",
"author": "Ownego Team",
"type": "module",
"keywords": [
"polaris",
"shopify polaris",
"polaris-vue",
"vue3",
"vue framework",
"ui"
],
"files": [
"dist",
"package.json",
"volar.d.ts",
"LICENSE",
"README.md"
],
"types": "./dist/types/polaris-vue.d.ts",
"main": "./dist/polaris-vue.js",
"module": "./dist/es/polaris-vue.js",
"exports": {
".": {
"import": "./dist/es/polaris-vue.js",
"require": "./dist/polaris-vue.js",
"types": "./dist/types/polaris-vue.d.ts"
},
"./*": "./*"
},
"scripts": {
"dev": "vite",
"build": "rimraf dist && yarn build:cjs && yarn build:es && npm run gen-dts && npm run copy-locales && npm run remove-trashes",
"build:cjs": "vite build --config ./build/configs/vite.cjs.ts",
"build:es": "vite build --config ./build/configs/vite.es.ts",
"preview": "vite preview --port 5050",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"gen-dts": "esbuild build/gen-component-declaration.js --bundle --platform=node | node && npm run move-dts",
"move-dts": "mv volar.d.ts dist/volar.d.ts",
"copy-locales": "cp -R polaris/polaris-react/locales dist/",
"remove-trashes": "rimraf dist/favicon.ico dist/images dist/es/favicon.ico dist/es/images",
"gen:meta": "build/gen-meta.ts",
"gen:docs-content": "build/gen-docs-content.ts",
"gen:docs-types": "build/gen-docs-types.ts",
"gen:init": "npm install -g vite-node && chmod +x build/gen-meta.ts build/gen-docs-content.ts build/gen-docs-types.ts",
"gen:docs": "yarn gen:meta && yarn gen:docs-content && yarn gen:docs-types",
"docs:dev": "vitepress dev docs",
"docs:build": "yarn gen:docs && vitepress build docs && yarn docs:assets",
"docs:preview": "yarn gen:docs && vitepress preview docs && yarn docs:assets",
"docs:assets": "cp -r docs/assets/** docs/dist/assets"
},
"dependencies": {
"@shopify/polaris-icons": "9.3.0",
"vite-svg-loader": "^5.1.0"
},
"devDependencies": {
"@csstools/postcss-global-data": "^2.1.1",
"@shopify/polaris-tokens": "9.4.0",
"@shopify/postcss-plugin": "^5.0.2",
"@types/node": "^20.10.4",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/language-plugin-pug": "^2.0.29",
"change-case": "^5.3.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-vue-pug": "^0.6.1",
"flexsearch": "^0.7.31",
"fs-extra": "^11.2.0",
"globby": "^14.0.0",
"markdown-it": "^14.0.0",
"path": "^0.12.7",
"postcss-custom-media": "^10.0.2",
"postcss-discard-comments": "^6.0.2",
"postcss-import": "^16.1.0",
"postcss-mixins": "^10.0.0",
"postcss-nesting": "^12.1.0",
"postcss-pxtorem": "^6.0.0",
"pug": "^3.0.2",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"url": "^0.11.3",
"vite": "^5.3.1",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-replace": "^0.1.1",
"vitepress": "^1.0.2",
"vue": "^3.4.19",
"vue-component-meta": "^1.8.27",
"vue-router": "^4.2.5",
"vue-tsc": "^2.0.21"
},
"peerDependencies": {
"vue": "^3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ownego/polaris-vue.git"
},
"bugs": {
"url": "https://github.com/ownego/polaris-vue/issues"
},
"homepage": "https://github.com/ownego/polaris-vue#readme",
"license": "MIT"
}