forked from bryiac/stitchtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "stitchtail",
"author": "coloredwax",
"version": "1.0.17",
"description": "Generate classes depending on passed props using a base, variants, and compounds.",
"keywords": [
"base",
"variants",
"compounds",
"css-in-js",
"stitches",
"tailwind"
],
"repository": {
"type": "git",
"url": "https://github.com/coloredwax/stitchtail.git"
},
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "eslint src --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"rimraf": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}