-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "@sketch-hq/material-icons-library",
"version": "1.1.0",
"description": "A proof of concept tool to generate a Sketch Library from Google's Material Design Icons.",
"main": "index.ts",
"scripts": {
"postinstall": "yarn run patch && yarn run clone-icons",
"clean": "rm -Rf *.sketch dist",
"patch": "cp src/patches/svg-points/index.d.ts node_modules/svg-points/index.d.ts",
"clone-icons": "git clone --depth=1 https://github.com/google/material-design-icons.git assets/material-design-icons",
"build": "yarn clean && tsc --outDir dist src/index.ts",
"start": "yarn build && node dist/index.js",
"open": "yarn start && open -a Sketch material-design-icons.sketch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sketch-hq/material-icons-library.git"
},
"keywords": [
"sketch"
],
"author": "Ale M",
"license": "MIT",
"bugs": {
"url": "https://github.com/sketch-hq/material-icons-library/issues"
},
"homepage": "https://github.com/sketch-hq/material-icons-library#readme",
"dependencies": {
"adm-zip": "^0.5.9",
"glob": "^7.2.0",
"svgson": "^5.2.1",
"uuid": "^8.3.2",
"@sketch-hq/sketch-file": "^1.1.0",
"svg-points": "^6.0.1"
},
"devDependencies": {
"@sketch-hq/sketch-file-format-ts": "^6.2.0",
"@types/adm-zip": "^0.4.34",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"typescript": "^4.1.2"
}
}