-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "figmarine",
"private": true,
"type": "module",
"description": "Figue marine, Carpobrotus edulis - A collection of tools for frontend and DevOps engineers who use Figma",
"repository": {
"type": "git",
"url": "https://github.com/Sidnioulz/figmarine"
},
"bugs": {
"url": "https://github.com/Sidnioulz/figmarine/issues"
},
"keywords": [
"figma",
"rest",
"api",
"eslint",
"figmarine"
],
"author": "Steve Dodier-Lazaro",
"homepage": "https://github.com/Sidnioulz/figmarine",
"workspaces": [
"apps/*",
"packages/*",
"!packages/config-*"
],
"scripts": {
"api:regen": "turbo run api:regen",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:staged": "turbo run lint:staged --filter=[HEAD^1]",
"prepare": "husky",
"prerelease": "turbo run build",
"prerelease:dry": "turbo run build",
"release": "multi-semantic-release",
"release:dry": "multi-semantic-release --dryRun --no-ci",
"test": "turbo run test",
"test:changed": "turbo run test:changed --filter=[HEAD^1]",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@anolilab/multi-semantic-release": "^1.1.5",
"@anolilab/semantic-release-pnpm": "^1.1.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"turbo": "^2.2.3",
"vitest": "^2.1.4"
},
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=20"
}
}