-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
{
"name": "@astel/icons",
"version": "0.0.6",
"description": "Icons for Astel UI",
"keywords": [
"icons",
"vue 3",
"avid",
"avid ui"
],
"homepage": "https://github.com/astel-org/icons#readme",
"bugs": {
"url": "https://github.com/astel-org/icons/issues"
},
"license": "MIT",
"author": "",
"files": [
"dist/"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/astel-org/icons.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "esno src/index.ts",
"prepublishOnly": "yarn build",
"release": "np",
"lint": "eslint . --ext .js,.ts,.json,.json5,.vue,.md --fix"
},
"sideEffects": false,
"peerDependencies": {
"vue": "^3.2.33"
},
"devDependencies": {
"@astel/cli": "^0.0.8",
"@kolhe/eslint-config": "^1.1.5",
"@types/fs-extra": "^9.0.13",
"@types/shelljs": "^0.8.11",
"@types/svgo": "^2.6.3",
"eslint": "^8.21.0",
"esno": "^0.14.1",
"fs-extra": "^10.1.0",
"lucide-static": "^0.84.0",
"np": "^7.6.2",
"prettier": "^2.7.1",
"shelljs": "^0.8.5",
"svgo": "^2.8.0",
"typescript": "^4.7.4"
}
}