-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@dice-roller/vue",
"version": "1.2.1",
"description": "Vue.js component which allows rolling dice",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue.umd.cjs",
"module": "./dist/vue.js",
"unpkg": "./dist/vue.umd.cjs",
"exports": {
".": {
"import": "./dist/vue.js",
"require": "./dist/vue.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dice-roller/vue.git"
},
"keywords": [
"dice",
"roll",
"vue"
],
"author": "GreenImp Media <[email protected]> (http://greenimp.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dice-roller/vue/issues"
},
"homepage": "https://github.com/dice-roller/vue",
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.5.0",
"vue": "^3.2.39"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"vite": "^3.0.9"
}
}