-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "vue3-flex",
"version": "0.0.15",
"license": "MIT",
"author": "Jochem Hagenaars <[email protected]> (https://notsosolo.app)",
"scripts": {
"dev": "vue-cli-service serve dev/serve.ts",
"build:old": "vite build && tsc -d --emitDeclarationOnly && vue-typegen gen -s ./src -o ./dist",
"build": "vite build && tsc -d --emitDeclarationOnly && vue-tsc --declaration --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"lint": "eslint \"{packages,playground}/**/*.{ts,tsx,vue,js,jsx,html}\"",
"prettier": "npx prettier --write ."
},
"peerDependencies": {
"vue": "^3.2"
},
"files": [
"dist",
"dist/*.css"
],
"repository": {
"type": "git",
"url": "https://github.com/NotSoSolo/vue3-flex.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/vue3-flex.umd.js",
"module": "dist/vue3-flex.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue3-flex.es.js",
"require": "./dist/vue3-flex.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"devDependencies": {
"@babel/types": "7.18.10",
"@types/node": "17.0.19",
"@vitejs/plugin-vue": "2.3.3",
"sass": "^1.54.3",
"typescript": "4.7.4",
"vite": "2.9.14",
"vue": "3.2.37",
"vue-tsc": "^0.39.5",
"vue-typegen": "0.2.0"
},
"bugs": {
"url": "https://github.com/NotSoSolo/vue3-flex/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/NotSoSolo/vue3-flex",
"keywords": [
"vue3",
"vue",
"flex",
"flexbox"
]
}