This repository has been archived by the owner on Feb 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "@geist-ui/vue-icons",
"version": "1.0.2",
"license": "MIT",
"scripts": {
"start": "vue-cli-service serve",
"lint": "echo 😅",
"update-icons": "ts-node scripts/update.ts",
"build": "node scripts/build-check.js && yarn icons && vue-cli-service build",
"icons": "ts-node scripts/generate.ts",
"build:lib": "node scripts/build-check.js && vue-cli-service build --target lib --name index ./packages/index.js",
"release": "yarn icons && yarn build:lib && yarn publish --access public --non-interactive",
"now-build": "yarn build && cp -R dist public"
},
"main": "packages/index.js",
"module": "packages/index.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist",
"packages",
"README.md"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/node": "^13.13.4",
"@vue/cli-plugin-babel": "^4.4.4",
"@vue/cli-service": "^4.4.4",
"@geist-ui/themes": "^1.0.1",
"@geist-ui/vue": "1.0.0",
"babel-eslint": "^10.0.1",
"core-js": "^3.6.5",
"eslint-config-lambdas": "^0.0.11",
"fs-extra": "^9.0.0",
"jsdom": "^16.2.2",
"node-fetch": "^2.6.1",
"prettier": "^2.0.5",
"prismjs": "^1.24.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svgo": "^1.3.2",
"ts-node": "^8.9.1",
"typescript": "^3.8.3",
"vue": "^2.6.10",
"vue-auto": "^0.2.2",
"vue-cli-plugin-pug": "^1.0.7",
"vue-prism-component": "^1.1.1",
"vue-template-compiler": "^2.6.11"
}
}