-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "@tailus/themer",
"version": "0.1.0",
"description": "Tailus themer",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"build": "npx tsc ./src/index.ts --outDir dist --declaration --esModuleInterop",
"prepublishOnly": "npm run build",
"publish": "npm run build && npm publish --access public"
},
"bugs": {
"url": "https://github.com/tailus-ui/themer/issues"
},
"author": "tailus.io",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.3",
"@changesets/cli": "^2.27.1",
"install": "^0.13.0",
"npm": "^10.5.1",
"prettier-plugin-tailwindcss": "^0.5.13"
}
}