-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.82 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.82 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
{
"name": "@nimiq/vue3-components",
"version": "0.0.0",
"license": "Apache-2.0",
"files": [
"dist"
],
"type": "module",
"types": "./dist/main.d.ts",
"module": "./dist/src/vue3-components.js",
"exports": {
".": {
"default": "./dist/src/vue3-components.js",
"types": "./dist/main.d.ts"
},
"./css": "./dist/style.css"
},
"sideEffects": false,
"scripts": {
"lint": "vue-tsc --noEmit",
"build": "rm -rf dist && yarn lint && yarn i18n:lib && vite build && vue-tsc --emitDeclarationOnly",
"deploy": "yarn build && yarn deploy-only",
"deploy-only": "node deploy_scripts/build.js",
"storybook": "yarn i18n:lib && start-storybook -p 6006",
"build-storybook": "yarn i18n:lib && BASE_PATH=/vue3-components/ build-storybook",
"deploy-storybook": "yarn build-storybook && yarn deploy-only-storybook",
"deploy-only-storybook": "node deploy_scripts/storybook.js",
"deploy-all": "yarn deploy && yarn deploy-storybook",
"i18n:extract": "echo \"vue3-components use vue-components's language files. Please update them there.\"",
"i18n:pull": "tx pull --force --all && echo \"\nNewest translations pulled, but consider whether updating them in vue-components and then merging all the latest changes including the language updates over might be the better approach to keep the code and translations in sync.\"",
"i18n:push": "echo \"vue3-components use vue-components's language files. Please update them there.\"",
"i18n:lib": "rimraf src/i18n/?? ; node node_modules/webpack-i18n-tools/tools/convertToJsonLib.js 'src/i18n/!(en).po'",
"i18n:sync": "echo \"vue3-components use vue-components's language files. Please update them there.\""
},
"dependencies": {
"@nimiq/identicons": "^1.6.2",
"@nimiq/style": "^0.8.5",
"@nimiq/utils": "^0.9.1",
"input-format": "^0.3.7",
"js-sha3": "^0.8.0",
"qr-creator": "^1.0.0",
"qr-scanner": "^1.4.2"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/preset-scss": "^1.0.3",
"@storybook/vue3": "^6.5.13",
"@vitejs/plugin-vue": "^3.2.0",
"autoprefixer": "^10.4.13",
"browserslist": "4.21.4",
"gh-pages": "^4.0.0",
"postcss": "^8.4.19",
"rimraf": "^5.0.1",
"rollup-plugin-rename-node-modules": "^1.3.1",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-svg-loader": "^3.6.0",
"vue": "^3.2.45",
"vue-tsc": "^0.34.13",
"webpack-i18n-tools": "https://github.com/nimiq/webpack-i18n-tools#5d8b1b5201ad63c5144dc3ccc0c706e107075c34"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"packageManager": "yarn@3.6.4"
}