-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "tailwind-psuedo",
"version": "0.1.1",
"description": "A cleaner way to write psuedo elements code with tailwindcss",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && tsup",
"lint": "eslint './src/**/*'",
"test": "jest test --config jest.config.mjs --coverage",
"test:watch": "jest test --config jest.config.mjs --watch",
"publish":"npm run test && npm run build && npm publish"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": false,
"clean": true
},
"exports": "./dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Chakravarthy7102/tailwind-psuedo.git"
},
"keywords": [
"tailwindcss"
],
"author": "Chakravarthi Medicharla",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chakravarthy7102/tailwind-psuedo/issues"
},
"homepage": "https://github.com/Chakravarthy7102/tailwind-psuedo#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"@types/jest": "^29.5.5",
"ts-jest": "^29.1.1"
}
}