-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
{
"name": "pollen-css",
"type": "module",
"version": "5.0.1",
"description": "Utility-first CSS for the future",
"main": "pollen.css",
"style": "pollen.css",
"types": "types.d.ts",
"bin": {
"pollen": "dist/index.js"
},
"scripts": {
"dev": "rollup -c -w & vitest",
"build": "NODE_ENV=production rollup -c && chmod +x dist/index.js && dist/index.js --output=dist/pollen.css",
"lint": "eslint . --quiet",
"prepublishOnly": "pnpm build && pnpm test",
"test": "vitest run --coverage",
"prepare": "husky"
},
"exports": {
".": "./dist/index.js",
"./utils": "./dist/utils/index.js",
"./pollen.css": "./dist/pollen.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heybokeh/pollen.git"
},
"keywords": [
"css",
"css-utilities",
"functional-css",
"css-framework",
"css-variables",
"design-system",
"tailwindcss"
],
"author": {
"name": "Madeleine Ostoja <[email protected]>"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/heybokeh/pollen/issues"
},
"homepage": "https://www.pollen.style",
"dependencies": {
"commander": "^12.1.0",
"css-vars-ponyfill": "^2.4.9",
"javascript-stringify": "^2.1.0",
"lilconfig": "^3.1.2",
"lodash-es": "^4.17.21",
"map-obj": "^5.0.2",
"prettier": "^3.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.10",
"@types/prettier": "^2.7.3",
"@types/stringify-object": "^4.0.5",
"@vitest/coverage-istanbul": "^2.0.2",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"rollup": "^4.18.1",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.41",
"vitest": "^2.0.2"
}
}