-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.04 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.04 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
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
{
"name": "phosphor-icons-tailwindcss",
"version": "1.2.2",
"description": "Tailwind plugin for Phoshor icon set in pure CSS",
"type": "module",
"main": "src/plugin.js",
"exports": {
".": {
"types": "./src/plugin.d.ts",
"import": "./src/plugin.js",
"default": "./src/plugin.js"
}
},
"types": "src/plugin.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src"
],
"keywords": [
"css",
"tailwind",
"phosphor",
"icons",
"mask"
],
"author": {
"email": "vnphanquang@gmail.com",
"name": "Quang Phan",
"url": "https://github.com/vnphanquang"
},
"license": "MIT",
"homepage": "https://github.com/vnphanquang/phosphor-icons-tailwindcss",
"bugs": {
"url": "https://github.com/vnphanquang/phosphor-icons-tailwindcss/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vnphanquang/phosphor-icons-tailwindcss.git"
},
"scripts": {
"prepublishOnly": "publint",
"lint": "eslint src/**/*",
"test": "vitest --coverage",
"ci:test:units": "vitest run plugin --coverage --reporter=junit --outputFile=./coverage/junit.xml",
"ci:test:integrations": "vitest run vite",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish && pnpm install"
},
"dependencies": {
"@phosphor-icons/core": "^2.1.1",
"import-meta-resolve": "^4.1.0"
},
"peerDependencies": {
"tailwindcss": ">=3.4.14 || >=4.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@tailwindcss/node": "^4.1.3",
"@types/node": "^22.14.1",
"@vitest/coverage-istanbul": "3.1.1",
"@vitest/ui": "^3.1.1",
"@vnphanquang/eslint-config": "^4.0.2",
"eslint": "^9.24.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"publint": "^0.3.11",
"tailwindcss": "^4.1.3",
"tailwindcssv3": "npm:tailwindcss@3.4.17",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"pnpm": ">=9.0.0",
"node": ">=22.0.0"
},
"volta": {
"node": "22.11.0"
}
}