-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "tailwind-extract",
"version": "1.0.1",
"description": "Utility package for Tailwind CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint src/**/*.ts",
"format": "prettier src/**/*.ts --write",
"test": "vitest run",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozgurgokdemir/tailwind-extract.git"
},
"keywords": [
"tailwind",
"utility",
"classes",
"classname",
"classnames"
],
"author": {
"name": "Özgür Gökdemir",
"email": "ozgurgokd@gmail.com",
"url": "https://ozgurgokdemir.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ozgurgokdemir/tailwind-extract/issues"
},
"homepage": "https://github.com/ozgurgokdemir/tailwind-extract#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}