-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.07 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
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.1",
"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": "[email protected]",
"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-beta.8"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@tailwindcss/node": "4.0.0-beta.8",
"@types/node": "^22.10.2",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/ui": "^2.1.8",
"@vnphanquang/eslint-config": "^3.0.1",
"eslint": "^9.17.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"tailwindcss": "4.0.0-beta.8",
"tailwindcssv3": "npm:[email protected]",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=9.0.0",
"node": ">=22.0.0"
},
"volta": {
"node": "22.11.0"
}
}