-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 2.17 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
{
"name": "tailwindcss-3d",
"displayName": "3D Plugin for Tailwind CSS",
"description": "Add 3D transforms to your TailwindCSS project",
"keywords": [
"TailwindCSS"
],
"version": "1.0.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sambauers/tailwindcss-3d.git"
},
"homepage": "https://github.com/sambauers/tailwindcss-3d",
"files": [
"src/*"
],
"packageManager": "[email protected]",
"scripts": {
"clean": "rm -rf dist",
"lint": "markdownlint *.md && eslint .",
"test": "jest --coverage",
"compile": "swc ./src --out-dir ./dist --strip-leading-paths",
"compile:scripts": "swc ./scripts --out-dir ./build/scripts --strip-leading-paths",
"clean:scripts": "rm -rf ./build/scripts",
"copy-release-files": "pnpm compile:scripts && node ./build/scripts/copy-release-files.js && pnpm clean:scripts",
"build": "pnpm clean && pnpm compile",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"package": "pnpm lint && pnpm test && pnpm build && pnpm build:types && pnpm copy-release-files",
"release": "pnpm package && pnpm publish dist",
"dev": "pnpm clean && mkdir -p ./dist/types && pnpm copy-release-files && concurrently \"pnpm:compile --watch\" \"pnpm:build:types --watch\"",
"regenerate-pnpm-lock": "rm -rf ./node_modules & rm pnpm-lock.yaml & pnpm install"
},
"peerDependencies": {
"tailwindcss": ">=3.2.0"
},
"dependencies": {
"@swc/helpers": "0.5.13",
"lodash": "4.17.21"
},
"devDependencies": {
"@swc/cli": "0.5.0",
"@swc/core": "1.7.42",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "22.8.6",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"concurrently": "9.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-custom-alias": "1.3.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"markdownlint-cli": "0.42.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
}
}