-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "@kamona/tailwindcss-perspective",
"version": "0.1.1",
"description": "A little bit of utility classes related to css 3d transform",
"repository": {
"type": "git",
"url": "git+https://github.com/Kamona-WD/tailwindcss-perspective.git"
},
"homepage": "https://kamona-wd.github.io/tailwindcss-perspective/index.html",
"license": "MIT",
"author": {
"name": "Ahmed Kamel",
"email": "[email protected]",
"url": "https://github.com/Kamona-WD"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/tailwindcss-perspective.cjs.js",
"module": "./dist/tailwindcss-perspective.esm.js",
"scripts": {
"dev": "run-p js:watch css:watch serve",
"js:build": "node build",
"js:watch": "node build --watch",
"css:watch": "tailwind -i ./tailwind.css -o ./examples/css/style.css -w",
"css:build": "tailwind -i ./tailwind.css -o ./examples/css/style.css -m",
"format": "prettier --write src examples",
"serve": "live-server ./examples",
"deploy": "gh-pages -d examples",
"predeploy": "run-s css:build format",
"prepublishOnly": "npm run js:build",
"prepare": "husky install"
},
"keywords": [
"tailwindcss",
"css",
"3d"
],
"lint-staged": {
"src/**/*.js": "prettier --write",
"examples/**/*.html": "prettier --write"
},
"peerDependencies": {
"tailwindcss": ">=2.2.0"
},
"devDependencies": {
"@kamona/tailwindcss-perspective": "^0.1.1",
"autoprefixer": "^10.3.1",
"esbuild": "^0.12.16",
"gh-pages": "^3.2.3",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"live-server": "^1.2.1",
"lodash.map": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.7"
}
}