-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "twcss",
"version": "0.16.0",
"main": "engine/twcss.js",
"author": "Michal Kochel",
"license": "MIT",
"type": "module",
"description": "Fast minimalist utility-first CSS runtime inspired by Tailwind and Twind",
"keywords": [
"css",
"utility-first",
"tailwind",
"twind",
"tw-in-js",
"tailwind-in-js"
],
"homepage": "https://github.com/gavoja/twcss",
"bugs": {
"url": "https://github.com/gavoja/twcss/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gavoja/twcss.git"
},
"exports": {
".": "./engine/twcss.js",
"./compiler": "./engine/compiler.js",
"./utils": "./engine/utils.js",
"./constants": "./engine/constants.js",
"./colors": "./engine/colors.js",
"./preflight": "./engine/preflight.js"
},
"scripts": {
"start": "npx ebp --dev",
"build": "npx ebp --iife",
"test": "npx playwright test",
"lint": "npx eslint && npx rumdl check .",
"format": "npx eslint --fix",
"generate-reference": "node ./tools/generate-reference.js",
"release": "dotenv release-it -- --verbose",
"release-candidate": "dotenv release-it -- --verbose --preRelease=rc",
"deploy": "npm run build && node ./tools/deploy.js"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"chroma-js": "^3.1.2",
"diff": "^8.0.2",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"esbuild": "^0.27.0",
"esbuild-plus": "^0.3.0",
"eslint": "^9.39.1",
"neostandard": "^0.13.0",
"playwright": "^1.55.0",
"release-it": "^19.2.4",
"rumdl": "^0.1.58"
},
"overrides": {
"undici": "^6.24.0"
}
}