-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@db-ui/fie",
"version": "0.0.0",
"description": "'fie' or 'figma icon exporter' downloads all icons from figma",
"repository": {
"type": "git",
"url": "https://github.com/db-ui/mono.git"
},
"license": "Apache-2.0",
"bin": {
"@db-ui/fie": "dist/index.js"
},
"main": "index.js",
"files": [
"dist/"
],
"type": "commonjs",
"scripts": {
"build": "esbuild src/figma-icon-exporter/cli.ts --bundle --outfile=dist/index.js --platform=node --packages=external",
"tsc": "tsc",
"lint": "eslint src --ext ts",
"prepare": "husky",
"pretest": "rimraf icons",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"generate:icon-fonts": "npx @db-ui/gif --src ./icons --variants filled inverted --fontName db-ux --withSizes true --debug true"
},
"dependencies": {
"axios": "1.7.7",
"commander": "^12.1.0",
"dotenv": "16.4.5",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"inquirer": "^12.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.7.2",
"cpr": "3.0.1",
"cross-env": "7.0.3",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"npm-run-all": "4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}