-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 861 Bytes
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
{
"name": "fullwindcss",
"version": "1.4.0",
"description": "fullwindcss",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"build_": "tsup ./index.ts",
"buildscript": "tsup ./script.ts",
"gen": "tsup ./gen.ts",
"deploy_": "pnpm publish",
"publish_": "pnpm publish"
},
"keywords": [
"fullwindcss tailwindcss"
],
"dependencies": {
"@types/chroma-js": "^2.4.4",
"@types/tailwindcss": "^3.1.0",
"chroma-js": "^3.1.2",
"fs": "0.0.1-security",
"tailwindcss": "^3.4.16"
},
"author": "Laurent Lahmy",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"exports": {
".": "./dist/index.js",
"./script": "./dist/script.js"
}
}