-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.41 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
61
62
63
64
65
66
67
{
"name": "@rhapsodic/bem-classnames-monorepo",
"version": "2.1.0",
"private": true,
"author": {
"name": "rhapsodic.dev",
"email": "rhapsodic.dev@gmail.com",
"url": "https://github.com/rhapsodic-dev"
},
"contributors": [
{
"name": "Svyatoslav Fyodorov",
"email": "intelrug@gmail.com",
"url": "https://github.com/intelrug"
},
{
"name": "TrenLok",
"email": "trenlok.dev@gmail.com",
"url": "https://github.com/trenlok"
}
],
"description": "A TypeScript utility for generating BEM modifier class names from component props",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "pnpm --filter @rhapsodic/bem-classnames dev",
"play:lib": "pnpm --filter @rhapsodic/bem-classnames-playground dev",
"play:vue": "pnpm --filter @rhapsodic/bem-classnames-vue-playground dev",
"build": "pnpm -r build",
"build:playgrounds": "pnpm run build:lib && pnpm run build:vue && pnpm --filter \"@rhapsodic/*playground\" build",
"bench": "pnpm run build:lib && node tests/benchmarks/index.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "pnpm run lint:scripts",
"lint:scripts": "eslint .",
"format": "pnpm run format:scripts",
"format:scripts": "eslint . --fix",
"prepare": "pnpm run hooks:install",
"typecheck": "tsc --noEmit",
"build:lib": "pnpm --filter @rhapsodic/bem-classnames build",
"build:vue": "pnpm --filter @rhapsodic/bem-classnames-vue build",
"build:skills": "pnpm --filter @rhapsodic/bem-classnames-skills build",
"release": "bumpp -r",
"hooks:install": "pnpm exec simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "catalog:hooks",
"@commitlint/config-conventional": "catalog:hooks",
"@rhapsodic/eslint-config": "catalog:lint",
"@vitest/coverage-v8": "catalog:test",
"bumpp": "catalog:release",
"eslint": "catalog:lint",
"lint-staged": "catalog:hooks",
"simple-git-hooks": "catalog:hooks",
"tinybench": "catalog:test",
"typescript": "catalog:types",
"vitest": "catalog:test"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --edit"
},
"packageManager": "pnpm@11.1.3+sha512.c85357fe17ca12dd23dd7071822666dfd7e3cb76fe214e3370b5ea2fb34f2a231185509b63e717f3cd0acb38dd3f8d82bcd5e8172400ae678b70ea4fbed0896d"
}