-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.74 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
{
"name": "@iplsplatoon/vue-components",
"version": "3.6.0",
"description": "Vue components for internal Inkling Performance Labs utilities.",
"homepage": "https://github.com/IPLSplatoon/vue-components",
"repository": "https://github.com/IPLSplatoon/vue-components",
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly",
"test": "jest",
"test:update": "jest -u",
"test:ci": "jest --json --outputFile=result.json --testLocationInResults",
"lint": "eslint --ext .js,.vue,.ts src",
"docs:dev": "vitepress dev docs --host 0.0.0.0",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"default": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"default": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"./style.css": "./dist/style.css"
},
"types": "dist/index.d.ts",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"lodash": "^4.17.21"
},
"files": [
"dist/**/*"
],
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-common-types": "^6.5.1",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/markdown-it-container": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/compiler-sfc": "^3.2.47",
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "^29.2.4",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.11.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"markdown-it-container": "^4.0.0",
"sass": "^1.69.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^5.0.11",
"vitepress": "^1.0.0-rc.31",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.1.1",
"vue-tsc": "^1.6.1"
},
"license": "MIT",
"jest": {
"projects": [
"<rootDir>/src/jest.config.ts"
]
},
"packageManager": "yarn@4.0.2",
"publishConfig": {
"access": "public"
}
}