-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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
82
83
84
85
86
{
"name": "tailwind-rabc",
"version": "1.0.1",
"license": "MIT",
"type": "module",
"main": "./index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./index.js"
},
"files": [
"dist/",
"index.js",
"README.md",
"CHANGELOG.md",
"package.json"
],
"keywords": [
"tailwind",
"auth",
"control",
"rabc",
"role"
],
"scripts": {
"forge": "flatjs-forge",
"clean": "rimraf --no-glob ./dist ./coverage ./tsconfig.tsbuildinfo",
"lint": "eslint . --ext .ts,.mts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location .cache/eslint/main.eslintcache",
"test": "run-s test-unit",
"test-unit": "vitest run --passWithNoTests",
"test-unit-watch": "vitest watch --ui",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"type-fest": "4.6.0"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1"
},
"devDependencies": {
"@armit/eslint-config-bases": "^0.1.3",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "18.5.0",
"@commitlint/config-conventional": "18.5.0",
"@dimjs/request": "^1.5.0",
"@flatjs/forge": "2.0.2",
"@types/node": "20.11.5",
"@types/prettier": "2.7.3",
"@types/shell-quote": "1.7.5",
"@vitest/coverage-istanbul": "1.2.1",
"@vitest/ui": "1.2.1",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.56.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"picocolors": "1.0.0",
"prettier": "3.2.4",
"rimraf": "5.0.5",
"shell-quote": "1.8.1",
"tailwindcss": "^3.0.24",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.2.1"
},
"engines": {
"node": ">=16.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}