-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@shakuroinc/figma-extractor",
"version": "5.6.0",
"author": "Shakuro team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakurocom/figma-extractor"
},
"bin": {
"figma-extract": "./dist/bin.js"
},
"types": "src/types.ts",
"files": [
"dist",
"README.md",
"package.json",
"src/types.ts"
],
"scripts": {
"dev": "ts-node ./src/bin.ts",
"build": "rm -rf dist && yarn tsc",
"lint": "eslint . --ext .ts,.tsx,.js --ignore-path .gitignore",
"test": "jest",
"prepare": "husky install",
"release": "yarn build && git push --tags && npm publish --access public --new-version"
},
"dependencies": {
"@inquirer/select": "^2.3.10",
"axios": "^1.7.2",
"cosmiconfig": "^8.2.0",
"figma-js": "^1.16.1-0",
"ramda": "^0.30.1",
"shelljs": "^0.8.5",
"svgo": "^3.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@shakuroinc/eslint-config-base": "1.3.0",
"@types/jest": "^29.5.12",
"@types/moxios": "^0.4.17",
"@types/ramda": "^0.30.1",
"@types/shelljs": "^0.8.15",
"@types/svgo": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-jest": "^29.7.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.3",
"memfs": "^4.9.3",
"moxios": "^0.4.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"svg-sprite-generator": "^0.0.7"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.10"
}
}