forked from kobaltedev/kobalte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
46
47
48
49
50
51
52
53
54
{
"name": "@kobalte/vanilla-extract",
"version": "0.5.0",
"private": false,
"description": "Vanilla Extract utils to style Kobalte components easily",
"keywords": [
"solid",
"solidjs",
"ui",
"library",
"design-system",
"components",
"vanilla-extract"
],
"homepage": "https://github.com/kobaltedev/kobalte/tree/main/packages/vanilla-extract#readme",
"bugs": {
"url": "https://github.com/kobaltedev/kobalte/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobaltedev/kobalte.git"
},
"license": "MIT",
"author": "Fabien Marie-Louise <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs",
"require": "./dist/index.js",
"node": "./dist/index.js"
},
"./src/*": "./src/*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": ["dist", "src"],
"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@vanilla-extract/css": "1.13.0"
},
"peerDependencies": {
"@vanilla-extract/css": "^1.13.0"
},
"publishConfig": {
"access": "public"
}
}