-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
76 lines (76 loc) · 2.9 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
{
"name": "figma-export",
"private": true,
"license": "MIT",
"type": "module",
"description": "Export tool for Figma",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/marcomontalbano/figma-export"
},
"scripts": {
"debug": "yarn build && node ./packages/cli/bin/run.js use-config .figmaexportrc.example.local.js",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"clean": "rm -rf node_modules/ output/ */*/node_modules */*/dist */*/tsconfig.tsbuildinfo",
"build": "tsc --build packages/**/tsconfig.json",
"lint": "yarn build && eslint . --ignore-pattern=node_modules --ignore-pattern=output --ignore-pattern=dist --ext .js,.jsx,.ts,.tsx",
"test": "yarn build && vitest run --exclude '**/integration.test.ts'",
"test:integration": "yarn build && vitest watch integration.test.ts",
"test:watch": "yarn build && vitest watch --exclude '**/integration.test.ts'",
"coverage": "yarn build && vitest run --coverage --exclude '**/integration.test.ts'",
"coverage:watch": "yarn build && vitest watch --coverage --exclude '**/integration.test.ts'",
"website:dev": "yarn build && yarn workspace @figma-export/website dev",
"website:build": "yarn build && yarn workspace @figma-export/website build",
"website:serve": "yarn dlx serve packages/website/out/",
"dep:major": "npx npm-check-updates -ws --root -u",
"dep:minor": "yarn dep:major --target minor",
"ls-engines": "yarn dlx ls-engines",
"version": "yarn && git add yarn.lock",
"pre-commit": "lint-staged -c ./lint-staged.config.js",
"prepare": "husky"
},
"author": "Marco Montalbano <[email protected]>",
"devDependencies": {
"@types/node": "~20.16.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-istanbul": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-plugin-import": "~2.29.1",
"husky": "^9.1.5",
"lerna": "^8.1.8",
"lerna-changelog": "~2.2.0",
"lint-staged": "~15.2.10",
"ls-engines": "^0.9.3",
"nock": "~13.5.5",
"npm-check-updates": "^17.1.1",
"typescript": "~5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">= 18.17"
},
"overrides": {
"axios": "^1.6.8"
},
"resolutions": {
"axios": "^1.6.8"
},
"changelog": {
"cacheDir": ".changelog",
"labels": {
"PR: Beauty :nail_care:": ":nail_care: Beauty",
"PR: Breaking Changes :comet:": ":comet: Breaking Changes",
"PR: Bug Fix :bug:": ":bug: Bug Fix",
"PR: Dependencies :up:": ":up: Dependencies",
"PR: Documentation :memo:": ":memo: Documentation",
"PR: Internal :house:": ":house: Internal",
"PR: New Feature :rocket:": ":rocket: New Feature"
}
},
"packageManager": "[email protected]"
}