-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (54 loc) · 2.32 KB
/
package.json
File metadata and controls
60 lines (54 loc) · 2.32 KB
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
{
"name": "gradiente-monorepo",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "Monorepo for gradiente library made by Flowscape UI",
"author": "Flowscape UI. Nice Arti <nikcrav@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Flowscape-UI/gradiente#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Flowscape-UI/gradiente.git"
},
"bugs": {
"url": "https://github.com/Flowscape-UI/gradiente/issues"
},
"scripts": {
"build": "pnpm --filter gradiente build",
"pack": "pnpm --filter gradiente pack --dry-run",
"dev": "pnpm --filter gradiente dev",
"test": "pnpm --filter gradiente test",
"typecheck": "pnpm --filter gradiente typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"update-patch:gradiente": "node scripts/release-gradiente.mjs patch",
"update-minor:gradiente": "node scripts/release-gradiente.mjs minor",
"update-major:gradiente": "node scripts/release-gradiente.mjs major",
"publish:gradiente": "npm publish ./packages/gradiente",
"push-release:gradiente": "git push && git push --tags",
"add:pkg": "pnpm add",
"add:pkg:dev": "pnpm add -D",
"install:gradiente": "pnpm install --filter gradiente",
"add:gradiente": "pnpm add --filter gradiente",
"add:gradiente:dev": "pnpm add -D --filter gradiente",
"docs:add": "pnpm add --filter gradiente-docs",
"docs:add-dev": "pnpm add -D --filter gradiente-docs",
"docs:dev": "pnpm --filter gradiente-docs dev",
"docs:build": "pnpm --filter gradiente-docs build",
"docs:preview": "pnpm --filter gradiente-docs preview",
"playground:add": "pnpm add --filter gradiente-playground",
"playground:add-dev": "pnpm add -D --filter gradiente-playground",
"playground:dev": "pnpm --filter gradiente-playground dev",
"playground:build": "pnpm --filter gradiente-playground build",
"playground:preview": "pnpm --filter gradiente-playground preview",
"pages:build": "pnpm run build && pnpm run docs:build && pnpm run playground:build && pnpm run playground:copy-to-docs",
"playground:copy-to-docs": "node scripts/copy-playground-to-docs.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2"
}
}