-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "@fy-/icons",
"version": "0.0.2",
"author": "Florian 'Fy' Gasquez <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fyvue/icons.git"
},
"bugs": {
"url": "https://github.com/fyvue/icons/issues"
},
"homepage": "https://github.com/fyvue/icons#readme",
"main": "dist/fyicons.cjs.js",
"module": "dist/fyicons.es.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/fyicons.es.js",
"require": "./dist/fyicons.cjs.js",
"types": "./dist/index.d.ts"
}
},
"peerDependencies": {
"vue": "^3.2.x"
},
"scripts": {
"build": "rm -rf dist/ && vite build --mode development && vue-tsc --declaration --emitDeclarationOnly --emitDeclarationOnly --outdir ./dist",
"components": "rm -rf dist/ && rollup -c rollup.components.config.js",
"lint:check": "eslint src/ --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --fix"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/compiler-sfc": "^3.2.45",
"@vue/runtime-core": "^3.2.45",
"@vue/server-renderer": "^3.2.45",
"eslint": "^8.29.0",
"postcss": "^8.4.19",
"rollup": "^2.50.0",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
}
}